File tree 3 files changed +22
-3
lines changed
3 files changed +22
-3
lines changed Original file line number Diff line number Diff line change @@ -15,10 +15,10 @@ type: application
15
15
# This is the chart version. This version number should be incremented each time you make changes
16
16
# to the chart and its templates, including the app version.
17
17
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18
- version : 0.5.21
18
+ version : 0.5.22
19
19
20
20
# This is the version number of the application being deployed. This version number should be
21
21
# incremented each time you make changes to the application. Versions are not expected to
22
22
# follow Semantic Versioning. They should reflect the version the application is using.
23
23
# It is recommended to use it with quotes.
24
- appVersion : " 0.5.21 "
24
+ appVersion : " 0.5.22 "
Original file line number Diff line number Diff line change 31
31
tolerations :
32
32
{{- toYaml . | nindent 8 }}
33
33
{{- end }}
34
+ {{- with .Values.extraInitContainers }}
35
+ initContainers :
36
+ {{- toYaml . | nindent 8 }}
37
+ {{- end }}
34
38
containers :
35
39
- args :
36
40
- --health-probe-bind-address=:8081
@@ -86,12 +90,19 @@ spec:
86
90
- mountPath : /mgmt-cluster
87
91
name : mgmt-cluster-kubeconfig
88
92
{{- end }}
93
+ {{- with .Values.extraVolumeMounts }}
94
+ {{- toYaml . | nindent 12 }}
95
+ {{- end }}
89
96
{{- end }}
97
+ {{- with .Values.extraEnvs }}
98
+ env :
99
+ {{ toYaml . | nindent 12 }}
100
+ {{- end }}
90
101
securityContext :
91
102
runAsNonRoot : true
92
103
serviceAccountName : {{ include "ydb.fullname" . }}
93
104
terminationGracePeriodSeconds : 10
94
- {{- if or .Values.webhook.enabled .Values.mgmtCluster.enabled }}
105
+ {{- if or .Values.webhook.enabled .Values.mgmtCluster.enabled .Values.extraVolumes }}
95
106
volumes :
96
107
{{- if .Values.webhook.enabled }}
97
108
- name : webhook-tls
@@ -112,6 +123,9 @@ spec:
112
123
secret :
113
124
secretName : {{ .Values.mgmtCluster.kubeconfig }}
114
125
{{- end }}
126
+ {{- with .Values.extraVolumes }}
127
+ {{- toYaml . | nindent 8 }}
128
+ {{- end }}
115
129
{{- end }}
116
130
{{- if .Values.imagePullSecrets }}
117
131
{{- with .Values.imagePullSecrets }}
Original file line number Diff line number Diff line change @@ -119,3 +119,8 @@ webhook:
119
119
# issuerRef:
120
120
# name: "issuer"
121
121
# kind: "ClusterIssuer"
122
+
123
+ extraVolumes : []
124
+ extraVolumeMounts : []
125
+ extraInitContainers : []
126
+ extraEnvs : []
You can’t perform that action at this time.
0 commit comments