Skip to content

Commit

Permalink
Merge pull request #715 from KCSesh/fix-image-pull-template
Browse files Browse the repository at this point in the history
fix: rename image_pull_secrets to ImagePullSecrets
  • Loading branch information
KCSesh authored Feb 4, 2025
2 parents 1979088 + c1c3e72 commit 4b47564
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ placement:
# --docker-username=AWS \
# --docker-password=$(aws --region us-west-2 ecr get-login-password) \
# --namespace=brupop-bottlerocket-aws
#image_pull_secrets: |-
#imagePullSecrets:
# - name: "brupop"

# External load balancer setting.
Expand Down
2 changes: 1 addition & 1 deletion deploy/charts/bottlerocket-update-operator/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ placement:
# --docker-username=AWS \
# --docker-password=$(aws --region us-west-2 ecr get-login-password) \
# --namespace=brupop-bottlerocket-aws
#image_pull_secrets: |-
#imagePullSecrets:
# - name: "brupop"

# External load balancer setting.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -89,9 +89,9 @@ spec:
topologySpreadConstraints:
{{- tpl (toYaml .) $ | nindent 8 }}
{{- end }}
{{- if ((.Values.image_pull_secrets)) }}
image_pull_secrets:
{{ .Values.image_pull_secrets }}
{{- with .Values.imagePullSecrets }}
imagePullSecrets:
{{- toYaml . | nindent 8 }}
{{- end }}
volumes:
- hostPath:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,8 @@ spec:
{{- if .Values.placement.controller.priorityClassName }}
priorityClassName: {{ .Values.placement.controller.priorityClassName | quote }}
{{- end }}
{{ if ((.Values.image_pull_secrets)) }}
image_pull_secrets:
{{ .Values.image_pull_secrets }}
{{ end }}
{{- with .Values.imagePullSecrets }}
imagePullSecrets:
{{- toYaml . | nindent 8 }}
{{- end }}
serviceAccountName: brupop-controller-service-account
2 changes: 1 addition & 1 deletion deploy/charts/bottlerocket-update-operator/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ placement:
# --docker-username=AWS \
# --docker-password=$(aws --region us-west-2 ecr get-login-password) \
# --namespace=brupop-bottlerocket-aws
#image_pull_secrets: |-
#imagePullSecrets:
# - name: "brupop"

# External load balancer setting.
Expand Down

0 comments on commit 4b47564

Please sign in to comment.