agentdanger commented on issue #29444: URL: https://github.com/apache/airflow/issues/29444#issuecomment-1452826643
I was able to solve this issue by installing 1.8 with the configured yaml file. My namespace for this implementation was colosseum. I had a custom yaml filed called values.yaml in the same working directory that I was performing my kubectl commands. I also had my git secret ready in the same working directory. kubectl commands I used are below: `kubectl create namespace colosseum --dry-run=client -o yaml | kubectl apply -f -` `kubectl create secret generic airflow-gke-git-secret --from-file=gitSshKey=airflow-gke-git-secret --namespace colosseum --dry-run=client -o yaml | kubectl apply -f -` `helm upgrade --install my-airflow apache-airflow/airflow --namespace colosseum --create-namespace -f values.yaml --debug` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
