Skip to content

Commit

Permalink
imagePullSecrets was in the wrong location
Browse files Browse the repository at this point in the history
  • Loading branch information
gniltaws committed Nov 23, 2024
1 parent b139137 commit a7789db
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,13 @@ spec:
activeDeadlineSeconds: {{ .installPlanApproverActiveDeadlineSeconds }}
template:
spec:
{{- if $.Values.installPlanApproverAndVerifyJobsImagePullSecret }}
imagePullSecrets:
- {{ $.Values.installPlanApproverAndVerifyJobsImagePullSecret }}
{{- end }}
containers:
- name: installplan-approver
image: {{ $.Values.installPlanApproverAndVerifyJobsImage }}
{{- if $.Values.installPlanApproverAndVerifyJobsImagePullSecret }}
imagePullSecrets:
- {{ $.Values.installPlanApproverAndVerifyJobsImagePullSecret }}
{{- end }}
command: ["/bin/sh","-c"]
args:
- >-
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,13 @@ spec:
activeDeadlineSeconds: {{ .installPlanVerifierActiveDeadlineSeconds }}
template:
spec:
{{- if $.Values.installPlanApproverAndVerifyJobsImagePullSecret }}
imagePullSecrets:
- {{ $.Values.installPlanApproverAndVerifyJobsImagePullSecret }}
{{- end }}
containers:
- name: installplan-complete-verifier
image: {{ $.Values.installPlanApproverAndVerifyJobsImage }}
{{- if $.Values.installPlanApproverAndVerifyJobsImagePullSecret }}
imagePullSecrets:
- {{ $.Values.installPlanApproverAndVerifyJobsImagePullSecret }}
{{- end }}
command: ["/bin/sh","-c"]
args:
- >-
Expand Down

0 comments on commit a7789db

Please sign in to comment.