File tree Expand file tree Collapse file tree 3 files changed +9
-1
lines changed
Expand file tree Collapse file tree 3 files changed +9
-1
lines changed Original file line number Diff line number Diff line change 4242 remote_logging = True
4343{{- end }}
4444
45+ [api]
46+ auth_backend = {{ .Values.api.authBackend }}
47+
4548 [logging]
4649 logging_level = DEBUG
4750 [webserver]
Original file line number Diff line number Diff line change @@ -434,3 +434,7 @@ postgresql:
434434 enabled : true
435435 postgresqlPassword : postgres
436436 postgresqlUsername : postgres
437+
438+ # Authentication backend used for the experimental API
439+ api :
440+ authBackend : airflow.api.auth.backend.deny_all
Original file line number Diff line number Diff line change @@ -294,7 +294,8 @@ function deploy_airflow_with_helm() {
294294 --set " defaultAirflowRepository=${DOCKERHUB_USER} /${DOCKERHUB_REPO} " \
295295 --set " images.airflow.repository=${DOCKERHUB_USER} /${DOCKERHUB_REPO} " \
296296 --set " images.airflow.tag=${AIRFLOW_PROD_BASE_TAG} " -v 1 \
297- --set " defaultAirflowTag=${AIRFLOW_PROD_BASE_TAG} " -v 1
297+ --set " defaultAirflowTag=${AIRFLOW_PROD_BASE_TAG} " -v 1 \
298+ --set " api.authBackend=airflow.api.auth.backend.default"
298299 echo
299300 popd || exit 1
300301}
You can’t perform that action at this time.
0 commit comments