File tree 3 files changed +24
-1
lines changed
3 files changed +24
-1
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ appVersion: 1.12.2
3
3
kubeVersion : " >=1.16.0-0"
4
4
description : A Helm chart for velero
5
5
name : velero
6
- version : 5.1.6
6
+ version : 5.1.7
7
7
home : https://github.com/vmware-tanzu/velero
8
8
icon : https://cdn-images-1.medium.com/max/1600/1*-9mb3AKnKdcL_QD3CMnthQ.png
9
9
sources :
Original file line number Diff line number Diff line change 86
86
volumeMounts :
87
87
- mountPath : /tmp
88
88
name : crds
89
+ {{- if (.Values.upgradeCRDsJob).extraVolumeMounts }}
90
+ {{- toYaml .Values.upgradeCRDsJob.extraVolumeMounts | nindent 12 }}
91
+ {{- end }}
92
+ {{- if (.Values.upgradeCRDsJob).extraEnvVars }}
93
+ env :
94
+ {{- with .Values.upgradeCRDsJob.extraEnvVars }}
95
+ {{- range $key, $value := . }}
96
+ - name : {{ default "none" $key }}
97
+ value : {{ default "none" $value | quote }}
98
+ {{- end }}
99
+ {{- end }}
100
+ {{- end }}
89
101
volumes :
90
102
- name : crds
91
103
emptyDir : {}
104
+ {{- if (.Values.upgradeCRDsJob).extraVolumes }}
105
+ {{- toYaml .Values.upgradeCRDsJob.extraVolumes | nindent 8 }}
106
+ {{- end }}
92
107
restartPolicy : OnFailure
93
108
{{- with $podSecurityContext }}
94
109
securityContext :
Original file line number Diff line number Diff line change @@ -89,6 +89,14 @@ upgradeJobResources: {}
89
89
# limits:
90
90
# cpu: 100m
91
91
# memory: 256Mi
92
+ upgradeCRDsJob :
93
+ # Extra volumes for the Upgrade CRDs Job. Optional.
94
+ extraVolumes : []
95
+ # Extra volumeMounts for the Upgrade CRDs Job. Optional.
96
+ extraVolumeMounts : []
97
+ # Extra key/value pairs to be used as environment variables. Optional.
98
+ extraEnvVars : {}
99
+
92
100
93
101
# Configure the dnsPolicy of the Velero deployment
94
102
# See: https://kubernetes.io/docs/concepts/services-networking/dns-pod-service/#pod-s-dns-policy
You can’t perform that action at this time.
0 commit comments