readme command line usage - to specify pipeline file name readme updated to include reasoning behind the project use native golang sqlite RunScriptCommand named in functionMap removed unused functions removed unused functions run script and pipeline example renamed functions to drop the word script and add pipeline verb
11 lines
No EOL
287 B
Bash
Executable file
11 lines
No EOL
287 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
if kubectl -n cert-manager get pods 2>/dev/null | grep -q 'Running'; then
|
|
echo "cert-manager pods already running. Skipping installation."
|
|
exit 0
|
|
fi
|
|
|
|
|
|
|
|
|
|
kubectl apply -f https://github.com/cert-manager/cert-manager/releases/download/v1.17.2/cert-manager.yaml |