diff --git a/charts/tesk/templates/common/tesk-deployment.yaml b/charts/tesk/templates/common/tesk-deployment.yaml index 00c8f198..9e0d716f 100644 --- a/charts/tesk/templates/common/tesk-deployment.yaml +++ b/charts/tesk/templates/common/tesk-deployment.yaml @@ -90,10 +90,21 @@ spec: volumeMounts: - name: service-info-config mountPath: /etc/tesk/service-info + {{- if .Values.tesk.extraVolumeMounts }} + {{- toYaml .Values.tesk.extraVolumeMounts | nindent 10 }} + {{- end }} ports: - containerPort: {{ .Values.tesk.port }} + + {{- if .Values.tesk.extraContainers }} + {{- toYaml .Values.tesk.extraContainers | nindent 6 }} + {{- end }} + volumes: - name: service-info-config configMap: name: service-info-config + {{- if .Values.tesk.extraVolumes }} + {{- toYaml .Values.tesk.extraVolumes | nindent 8 }} + {{- end }} \ No newline at end of file