File tree Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 11apiVersion : v1
22description : airflow is a platform to programmatically author, schedule, and monitor workflows
33name : airflow
4- version : 8.0.5
4+ version : 8.0.6
55appVersion : 2.0.1
66icon : https://airflow.apache.org/_images/pin_large.png
77home : https://airflow.apache.org/
Original file line number Diff line number Diff line change @@ -220,8 +220,12 @@ EXAMPLE USAGE: {{ include "airflow.volumes" (dict "Release" .Release "Values" .V
220220{ {- /* logs */ -} }
221221{ {- if .Values.logs.persistence.enabled } }
222222- name: logs-data
223- mountPath: { { .Values.logs.path } }
224- subPath: { { .Values.logs.persistence.subPath } }
223+ persistentVolumeClaim:
224+ { {- if .Values.logs.persistence.existingClaim } }
225+ claimName: { { .Values.logs.persistence.existingClaim } }
226+ { {- else } }
227+ claimName: { { printf " %s-logs" (include " airflow.fullname" . | trunc 58) } }
228+ { {- end } }
225229{ {- end } }
226230
227231{ {- /* git-sync */ -} }
@@ -329,4 +333,4 @@ The list of `env` for web/scheduler/worker/flower Pods
329333{ {- if .Values.airflow.extraEnv } }
330334{ { toYaml .Values.airflow.extraEnv } }
331335{ {- end } }
332- { {- end } }
336+ { {- end } }
You can’t perform that action at this time.
0 commit comments