Compare commits

...

1 Commits

Author SHA1 Message Date
Martin Šalata
cd1b33b523 Fix certificate generation script arguments 2021-04-04 20:08:56 +02:00
3 changed files with 7 additions and 7 deletions

View File

@@ -15,7 +15,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes # 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. # to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/) # 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 # 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 # incremented each time you make changes to the application. Versions are not expected to

View File

@@ -21,9 +21,9 @@ spec:
image: "{{ .Values.certificateGeneratorImage.registry }}/{{ .Values.certificateGeneratorImage.repository }}:{{ .Values.certificateGeneratorImage.tag | default .Chart.AppVersion }}" image: "{{ .Values.certificateGeneratorImage.registry }}/{{ .Values.certificateGeneratorImage.repository }}:{{ .Values.certificateGeneratorImage.tag | default .Chart.AppVersion }}"
command: ["/entrypoint/entrypoint.sh"] command: ["/entrypoint/entrypoint.sh"]
args: args:
- --service="{{ include "imagepullsecret-injector.serviceName" . }}" - --service "{{ include "imagepullsecret-injector.serviceName" . }}"
- --namespace="{{ .Release.Namespace }}" - --namespace "{{ .Release.Namespace }}"
- --secret="{{ include "imagepullsecret-injector.certificateSecretName" . }}" - --secret "{{ include "imagepullsecret-injector.certificateSecretName" . }}"
volumeMounts: volumeMounts:
- mountPath: "/entrypoint" - mountPath: "/entrypoint"
name: entrypoint name: entrypoint

View File

@@ -14,9 +14,9 @@ spec:
image: "{{ .Values.certificateGeneratorImage.registry }}/{{ .Values.certificateGeneratorImage.repository }}:{{ .Values.certificateGeneratorImage.tag | default .Chart.AppVersion }}" image: "{{ .Values.certificateGeneratorImage.registry }}/{{ .Values.certificateGeneratorImage.repository }}:{{ .Values.certificateGeneratorImage.tag | default .Chart.AppVersion }}"
command: ["/entrypoint/entrypoint.sh"] command: ["/entrypoint/entrypoint.sh"]
args: args:
- --service="{{ include "imagepullsecret-injector.serviceName" . }}" - --service "{{ include "imagepullsecret-injector.serviceName" . }}"
- --namespace="{{ .Release.Namespace }}" - --namespace "{{ .Release.Namespace }}"
- --secret="{{ include "imagepullsecret-injector.certificateSecretName" . }}" - --secret "{{ include "imagepullsecret-injector.certificateSecretName" . }}"
volumeMounts: volumeMounts:
- mountPath: "/entrypoint" - mountPath: "/entrypoint"
name: entrypoint name: entrypoint