Skip to content

Commit accdb1a

Browse files
committed
updated docs
1 parent f0e49d1 commit accdb1a

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

scenarios/azure-aks-docs/articles/aks/airflow-deploy.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -403,7 +403,16 @@ In this section, we use Helm to install the External Secrets Operator. The Exter
403403
4. Install the Apache Airflow chart using the `helm install` command.
404404
405405
```bash
406-
helm install airflow apache-airflow/airflow --namespace airflow --create-namespace -f airflow_values.yaml --debug
406+
if ! helm list --namespace ${AKS_AIRFLOW_NAMESPACE} | grep -q external-secrets; then
407+
helm install external-secrets \
408+
external-secrets/external-secrets \
409+
--namespace ${AKS_AIRFLOW_NAMESPACE} \
410+
--create-namespace \
411+
--set installCRDs=true \
412+
--wait
413+
else
414+
echo "External Secrets Operator is already installed."
415+
fi
407416
```
408417
409418
Example output:

0 commit comments

Comments
 (0)