diff --git a/manifests/integrations/registry-credentials-sync/azure/reconcile-patch.yaml b/manifests/integrations/registry-credentials-sync/azure/reconcile-patch.yaml index ea79df70..b713053b 100644 --- a/manifests/integrations/registry-credentials-sync/azure/reconcile-patch.yaml +++ b/manifests/integrations/registry-credentials-sync/azure/reconcile-patch.yaml @@ -17,13 +17,13 @@ spec: echo "Starting ACR token sync -- $(date)" echo "Logging into Azure" az login --identity - echo "Logging into ACR: ${ACR_NAME}" - output="$(az acr login --expose-token -o=tsv -n "${ACR_NAME}")" - read token server <<< "${output}" + echo "Logging into ACR: $ACR_NAME" + output="$(az acr login --expose-token -o=tsv -n "$ACR_NAME")" + read token server <<< "$output" user="00000000-0000-0000-0000-000000000000" - echo "Creating secret: ${KUBE_SECRET}" - apply-secret "${KUBE_SECRET}" "${token}" "${user}" "${server}" + echo "Creating secret: $KUBE_SECRET" + apply-secret "$KUBE_SECRET" "$token" "$user" "$server" echo "Finished ACR token sync -- $(date)" echo