add etc-path to post-job.yaml in helm chart (#17148)

This commit is contained in:
mstein11 2023-05-06 22:34:38 +02:00 committed by GitHub
parent 824c55b3a4
commit 7eea6cdb12
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -45,6 +45,8 @@ spec:
fsGroup: {{ .Values.postJob.securityContext.fsGroup }} fsGroup: {{ .Values.postJob.securityContext.fsGroup }}
{{- end }} {{- end }}
volumes: volumes:
- name: etc-path
emptyDir: {}
- name: minio-configuration - name: minio-configuration
projected: projected:
sources: sources:
@ -100,6 +102,8 @@ spec:
- name: MINIO_PORT - name: MINIO_PORT
value: {{ .Values.service.port | quote }} value: {{ .Values.service.port | quote }}
volumeMounts: volumeMounts:
- name: etc-path
mountPath: /etc/minio
- name: minio-configuration - name: minio-configuration
mountPath: /config mountPath: /config
{{- if .Values.tls.enabled }} {{- if .Values.tls.enabled }}