Swalloow commented on a change in pull request #9371:
URL: https://github.com/apache/airflow/pull/9371#discussion_r450007823
##########
File path: chart/templates/webserver/webserver-deployment.yaml
##########
@@ -134,6 +142,17 @@ spec:
- name: config
configMap:
name: {{ template "airflow_config" . }}
+ {{- if .Values.dags.persistence.enabled }}
+ - name: dags
+ persistentVolumeClaim:
+ claimName: {{ .Release.Name }}-dags
Review comment:
If uses `dags.persistence.existingClaim`, it should be modified to
`claimName: {{ .Values.dags.persistence.existingClaim }}`.
Currently, the webserver pod cannot find pvc, so it is put in a pending
state.
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]