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
6 lines
239 B
Bash
Executable file
6 lines
239 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
CREATE_SMTP_CREDS=$(kubectl -n infctl create secret generic smtp-credentials -o yaml --dry-run=client --from-literal user=$SMTP_USER --from-literal password=$SMTP_PASS)
|
|
|
|
echo "$CREATE_SMTP_CREDS" | kubectl apply -f -
|
|
|