Skip to content

Commit

Permalink
Merge branch 'main' into production
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanmcshane committed Dec 5, 2024
2 parents 584277d + 12db372 commit 3621830
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 1 deletion.
3 changes: 3 additions & 0 deletions applications/job/templates/cronjob.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,9 @@ spec:
{{- if and .Values.image .Values.image.imagePullSecret }}
imagePullSecrets:
- name: {{ .Values.image.imagePullSecret }}
{{- else if and .Values.global .Values.global.image .Values.global.image.imagePullSecret }}
imagePullSecrets:
- name: {{ .Values.global.image.imagePullSecret }}
{{- end }}
containers:
- name: {{ .Chart.Name }}
Expand Down
2 changes: 1 addition & 1 deletion applications/web/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ keywords:
- web
name: web
type: application
version: 0.206.0
version: 0.207.0
3 changes: 3 additions & 0 deletions applications/web/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,9 @@ spec:
{{- if and .Values.image .Values.image.imagePullSecret }}
imagePullSecrets:
- name: {{ .Values.image.imagePullSecret }}
{{- else if and .Values.global .Values.global.image .Values.global.image.imagePullSecret }}
imagePullSecrets:
- name: {{ .Values.global.image.imagePullSecret }}
{{- end }}
initContainers:
# this is used for ensuring the kubelet is ready on new nodes, and can injected any downward API keys
Expand Down
3 changes: 3 additions & 0 deletions applications/worker/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,9 @@ spec:
{{- if and .Values.image .Values.image.imagePullSecret }}
imagePullSecrets:
- name: {{ .Values.image.imagePullSecret }}
{{- else if and .Values.global .Values.global.image .Values.global.image.imagePullSecret }}
imagePullSecrets:
- name: {{ .Values.global.image.imagePullSecret }}
{{- end }}
initContainers:
# this is used for ensuring the kubelet is ready on new nodes, and can injected any downward API keys
Expand Down

0 comments on commit 3621830

Please sign in to comment.