File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
charts/t8s-cluster/templates
workload-cluster/pre-install Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 32
32
- name : ETCDCTL_ENDPOINTS
33
33
value : {{ .hosted | ternary (printf "kmc-%s-etcd:2379" .Release.Name) "localhost:2379" }}
34
34
image : {{ include "common.images.image" (dict "imageRoot" .Values.global.etcd.image "global" .Values.global) }}
35
- imagePullPolicy : IfNotPresent
35
+ imagePullPolicy : {{ include "common.images.pullPolicy" .Values.global.etcd.image }}
36
36
name : etcd-defrag
37
37
securityContext :
38
38
runAsGroup : 1000
Original file line number Diff line number Diff line change 29
29
containers :
30
30
- name : uninstall
31
31
image : {{ include "common.images.image" (dict "imageRoot" .Values.global.kubectl.image "global" .Values.global) }}
32
- imagePullPolicy : {{ empty . Values.global.kubectl.image.digest | ternary "Always" "IfNotPresent" }}
32
+ imagePullPolicy : {{ include "common.images.pullPolicy" . Values.global.kubectl.image }}
33
33
securityContext :
34
34
readOnlyRootFilesystem : true
35
35
privileged : false
Original file line number Diff line number Diff line change 25
25
containers :
26
26
- name : uninstall
27
27
image : {{ include "common.images.image" (dict "imageRoot" .Values.global.kubectl.image "global" .Values.global) }}
28
- imagePullPolicy : {{ empty . Values.global.kubectl.image.digest | ternary "Always" "IfNotPresent" }}
28
+ imagePullPolicy : {{ include "common.images.pullPolicy" . Values.global.kubectl.image }}
29
29
securityContext :
30
30
readOnlyRootFilesystem : true
31
31
privileged : false
You can’t perform that action at this time.
0 commit comments