diff --git a/helm/imagepullsecret-injector/Chart.yaml b/helm/imagepullsecret-injector/Chart.yaml index d3d2772..a08c0a5 100644 --- a/helm/imagepullsecret-injector/Chart.yaml +++ b/helm/imagepullsecret-injector/Chart.yaml @@ -15,7 +15,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.0.9 +version: 0.0.10 # 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 diff --git a/helm/imagepullsecret-injector/templates/certificate-gen/cronjob-certificate-gen.yaml b/helm/imagepullsecret-injector/templates/certificate-gen/cronjob-certificate-gen.yaml index 372bb3f..4a2a0f3 100644 --- a/helm/imagepullsecret-injector/templates/certificate-gen/cronjob-certificate-gen.yaml +++ b/helm/imagepullsecret-injector/templates/certificate-gen/cronjob-certificate-gen.yaml @@ -21,9 +21,9 @@ spec: image: "{{ .Values.certificateGeneratorImage.registry }}/{{ .Values.certificateGeneratorImage.repository }}:{{ .Values.certificateGeneratorImage.tag | default .Chart.AppVersion }}" command: ["/entrypoint/entrypoint.sh"] args: - - --service="{{ include "imagepullsecret-injector.serviceName" . }}" - - --namespace="{{ .Release.Namespace }}" - - --secret="{{ include "imagepullsecret-injector.certificateSecretName" . }}" + - --service "{{ include "imagepullsecret-injector.serviceName" . }}" + - --namespace "{{ .Release.Namespace }}" + - --secret "{{ include "imagepullsecret-injector.certificateSecretName" . }}" volumeMounts: - mountPath: "/entrypoint" name: entrypoint diff --git a/helm/imagepullsecret-injector/templates/certificate-gen/job-certificate-gen.yaml b/helm/imagepullsecret-injector/templates/certificate-gen/job-certificate-gen.yaml index d3ad923..45eca13 100644 --- a/helm/imagepullsecret-injector/templates/certificate-gen/job-certificate-gen.yaml +++ b/helm/imagepullsecret-injector/templates/certificate-gen/job-certificate-gen.yaml @@ -14,9 +14,9 @@ spec: image: "{{ .Values.certificateGeneratorImage.registry }}/{{ .Values.certificateGeneratorImage.repository }}:{{ .Values.certificateGeneratorImage.tag | default .Chart.AppVersion }}" command: ["/entrypoint/entrypoint.sh"] args: - - --service="{{ include "imagepullsecret-injector.serviceName" . }}" - - --namespace="{{ .Release.Namespace }}" - - --secret="{{ include "imagepullsecret-injector.certificateSecretName" . }}" + - --service "{{ include "imagepullsecret-injector.serviceName" . }}" + - --namespace "{{ .Release.Namespace }}" + - --secret "{{ include "imagepullsecret-injector.certificateSecretName" . }}" volumeMounts: - mountPath: "/entrypoint" name: entrypoint