diff --git a/charts/firefly/Chart.yaml b/charts/firefly/Chart.yaml index bdc746e..5626885 100644 --- a/charts/firefly/Chart.yaml +++ b/charts/firefly/Chart.yaml @@ -19,7 +19,7 @@ name: firefly description: A Helm chart for deploying FireFly and FireFly HTTPS Dataexchange onto Kubernetes. type: application appVersion: "0.12.0" -version: "0.2.0" +version: "0.2.1" maintainers: - name: hfuss diff --git a/charts/firefly/templates/core/job-migrations.yaml b/charts/firefly/templates/core/job-migrations.yaml index 0ed5964..6257d33 100644 --- a/charts/firefly/templates/core/job-migrations.yaml +++ b/charts/firefly/templates/core/job-migrations.yaml @@ -28,6 +28,10 @@ spec: activeDeadlineSeconds: 12000 template: spec: + {{- with .Values.core.imagePullSecrets }} + imagePullSecrets: + {{- toYaml . | nindent 8 }} + {{- end }} containers: - name: migration image: "{{ .Values.core.image.repository }}:{{ .Values.core.image.tag | default (printf "v%s" .Chart.AppVersion) }}" diff --git a/charts/firefly/templates/core/job-registration.yaml b/charts/firefly/templates/core/job-registration.yaml index dfea391..be7cacc 100644 --- a/charts/firefly/templates/core/job-registration.yaml +++ b/charts/firefly/templates/core/job-registration.yaml @@ -28,6 +28,10 @@ spec: activeDeadlineSeconds: 12000 template: spec: + {{- with .Values.core.imagePullSecrets }} + imagePullSecrets: + {{- toYaml . | nindent 8 }} + {{- end }} containers: - name: registration image: "{{ .Values.core.image.repository }}:{{ .Values.core.image.tag | default (printf "v%s" .Chart.AppVersion) }}" diff --git a/charts/firefly/templates/erc20erc721/job-deploy-contracts.yaml b/charts/firefly/templates/erc20erc721/job-deploy-contracts.yaml index 5f343b6..c964b45 100644 --- a/charts/firefly/templates/erc20erc721/job-deploy-contracts.yaml +++ b/charts/firefly/templates/erc20erc721/job-deploy-contracts.yaml @@ -34,6 +34,10 @@ spec: name: {{ include "firefly.fullname" . }}-erc20-erc721-deploy-scripts - name: tmp emptyDir: {} + {{- with .Values.erc20erc721.imagePullSecrets }} + imagePullSecrets: + {{- toYaml . | nindent 8 }} + {{- end }} containers: - name: deploy-contracts image: "{{ .Values.erc20erc721.image.repository }}:{{ .Values.erc20erc721.image.tag }}" diff --git a/charts/firefly/templates/ethconnect/job-register-contracts.yaml b/charts/firefly/templates/ethconnect/job-register-contracts.yaml index 545b21e..e77560c 100644 --- a/charts/firefly/templates/ethconnect/job-register-contracts.yaml +++ b/charts/firefly/templates/ethconnect/job-register-contracts.yaml @@ -34,6 +34,10 @@ spec: name: {{ include "firefly.fullname" . }}-contracts - name: tmp emptyDir: {} + {{- with .Values.core.imagePullSecrets }} + imagePullSecrets: + {{- toYaml . | nindent 8 }} + {{- end }} containers: - name: register-contracts image: "{{ .Values.core.image.repository }}:{{ .Values.core.image.tag | default (printf "v%s" .Chart.AppVersion) }}"