18 lines
896 B
Plaintext
18 lines
896 B
Plaintext
{{- $releaseNamespace := .Release.Namespace }}
|
|
{{- $releaseName := .Release.Name }}
|
|
{{- $secretName := printf "%s-webhook-secret" $releaseName }}
|
|
CHART NAME: {{ .Chart.Name }}
|
|
CHART VERSION: {{ .Chart.Version }}
|
|
APP VERSION: {{ .Chart.AppVersion }}
|
|
|
|
** Please be patient while the chart is being deployed **
|
|
|
|
To get the webhook identification run:
|
|
|
|
export WEBHOOK_SECRET=$(kubectl get secret --namespace {{ $releaseNamespace }} {{ $secretName }} -o jsonpath="{.data.WEBHOOK_SECRET}" | base64 -d)
|
|
export API_USERNAME=$(kubectl get secret --namespace {{ $releaseNamespace }} {{ $secretName }} -o jsonpath="{.data.API_USERNAME}" | base64 -d)
|
|
export API_PASSWORD=$(kubectl get secret --namespace {{ $releaseNamespace }} {{ $secretName }} -o jsonpath="{.data.API_PASSWORD}" | base64 -d)
|
|
|
|
To build the authentication header:
|
|
|
|
echo "Basic $(echo -n $API_USERNAME:$API_PASSWORD | base64)" |