Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ then
exit 1
fi

echo "Waiting for node(s) to be ready..."
kubectl wait node --all --for=condition=Ready --timeout=120s

echo "Adding bitnami Helm Chart repository and dependencies (Postgresql and Redis)"
# tag::helm-add-bitnami-pgs[]
helm install airflow-postgresql oci://registry-1.docker.io/bitnamicharts/postgresql \
Expand Down Expand Up @@ -71,6 +74,10 @@ exit 1
;;
esac

# As of SDP 26.3 CRDs are managed by the operator not helm, so there should be an initial delay
# to allow the CRDs to be detected
sleep 10

echo "Creating credentials secret"
# tag::apply-airflow-credentials[]
kubectl apply -f airflow-credentials.yaml
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ then
exit 1
fi

echo "Waiting for node(s) to be ready..."
kubectl wait node --all --for=condition=Ready --timeout=120s

echo "Adding bitnami Helm Chart repository and dependencies (Postgresql and Redis)"
# tag::helm-add-bitnami-pgs[]
helm install airflow-postgresql oci://registry-1.docker.io/bitnamicharts/postgresql \
Expand Down Expand Up @@ -71,6 +74,10 @@ exit 1
;;
esac

# As of SDP 26.3 CRDs are managed by the operator not helm, so there should be an initial delay
# to allow the CRDs to be detected
sleep 10

echo "Creating credentials secret"
# tag::apply-airflow-credentials[]
kubectl apply -f airflow-credentials.yaml
Expand Down