Skip to content

Commit

Permalink
fix(base-cluster): curl images imagePullPolicy (#1168)
Browse files Browse the repository at this point in the history
  • Loading branch information
cwrau authored Sep 9, 2024
1 parent 48c8374 commit bb1942d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ spec:
containers:
- name: watchdog
image: {{ template "base-cluster.curl.image" . }}
imagePullPolicy: {{ empty .Values.global.kubectl.image.digest | ternary "Always" "IfNotPresent" }}
imagePullPolicy: {{ empty .Values.global.curl.image.digest | ternary "Always" "IfNotPresent" }}
securityContext:
allowPrivilegeEscalation: false
capabilities:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ spec:
containers:
- name: register
image: {{ include "base-cluster.curl.image" . }}
imagePullPolicy: {{ empty .Values.global.kubectl.image.digest | ternary "Always" "IfNotPresent" }}
imagePullPolicy: {{ empty .Values.global.curl.image.digest | ternary "Always" "IfNotPresent" }}
securityContext:
allowPrivilegeEscalation: false
capabilities:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ spec:
containers:
- name: unregister
image: {{ include "base-cluster.curl.image" . }}
imagePullPolicy: {{ empty .Values.global.kubectl.image.digest | ternary "Always" "IfNotPresent" }}
imagePullPolicy: {{ empty .Values.global.curl.image.digest | ternary "Always" "IfNotPresent" }}
securityContext:
allowPrivilegeEscalation: false
capabilities:
Expand Down

0 comments on commit bb1942d

Please sign in to comment.