diff --git a/charts/s3-operator/Chart.yaml b/charts/s3-operator/Chart.yaml index e661f78..32c4655 100644 --- a/charts/s3-operator/Chart.yaml +++ b/charts/s3-operator/Chart.yaml @@ -13,7 +13,7 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 0.5.5 +version: 0.5.6 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to # follow Semantic Versioning. They should reflect the version the application is using. diff --git a/charts/s3-operator/templates/deployment.yaml b/charts/s3-operator/templates/deployment.yaml index 137c524..469ee3e 100644 --- a/charts/s3-operator/templates/deployment.yaml +++ b/charts/s3-operator/templates/deployment.yaml @@ -35,7 +35,11 @@ spec: {{- with .Values.controllerManager.manager.imagePullSecrets }} imagePullSecrets: {{- toYaml . | nindent 8 }} - {{- end }} + {{- end }} + {{- with .Values.controllerManager.manager.volumes }} + volumes: + {{- toYaml . | nindent 8 }} + {{- end }} containers: - args: - --health-probe-bind-address=:8081 @@ -85,6 +89,10 @@ spec: {{- end }} image: {{ .Values.controllerManager.manager.image.repository }}:{{ .Values.controllerManager.manager.image.tag | default .Chart.AppVersion }} imagePullPolicy: {{ .Values.controllerManager.manager.imagePullPolicy | default "IfNotPresent" | quote }} + {{- with .Values.controllerManager.manager.volumeMounts }} + volumeMounts: + {{- toYaml . | nindent 10 }} + {{- end }} livenessProbe: httpGet: path: /healthz