mirror of
https://github.com/kubernetes-sigs/kubespray.git
synced 2026-02-01 17:48:12 -03:30
Fix ImagePullPolicy missing variable usage (#6091)
This commit is contained in:
@@ -85,7 +85,7 @@ spec:
|
||||
name: cilium-aws
|
||||
optional: true
|
||||
image: "{{ cilium_operator_image_repo }}:{{ cilium_operator_image_tag }}"
|
||||
imagePullPolicy: IfNotPresent
|
||||
imagePullPolicy: {{ k8s_image_pull_policy }}
|
||||
name: cilium-operator
|
||||
livenessProbe:
|
||||
httpGet:
|
||||
|
||||
@@ -46,7 +46,7 @@ spec:
|
||||
- name: CILIUM_CLUSTERMESH_CONFIG
|
||||
value: /var/lib/cilium/clustermesh/
|
||||
image: "{{cilium_image_repo}}:{{cilium_image_tag}}"
|
||||
imagePullPolicy: IfNotPresent
|
||||
imagePullPolicy: {{ k8s_image_pull_policy }}
|
||||
resources:
|
||||
limits:
|
||||
cpu: {{ cilium_cpu_limit }}
|
||||
@@ -162,7 +162,7 @@ spec:
|
||||
name: cilium-config
|
||||
optional: true
|
||||
image: "{{cilium_init_image_repo}}:{{cilium_init_image_tag}}"
|
||||
imagePullPolicy: IfNotPresent
|
||||
imagePullPolicy: {{ k8s_image_pull_policy }}
|
||||
name: clean-cilium-state
|
||||
securityContext:
|
||||
capabilities:
|
||||
|
||||
@@ -217,8 +217,8 @@ spec:
|
||||
containers:
|
||||
- name: pinger
|
||||
image: {{ kube_ovn_container_image_repo }}:{{ kube_ovn_container_image_tag }}
|
||||
command: ["/kube-ovn/kube-ovn-pinger", "--external-address=114.114.114.114"]
|
||||
imagePullPolicy: {{ k8s_image_pull_policy }}
|
||||
command: ["/kube-ovn/kube-ovn-pinger", "--external-address=114.114.114.114"]
|
||||
securityContext:
|
||||
runAsUser: 0
|
||||
privileged: false
|
||||
|
||||
@@ -33,7 +33,7 @@ spec:
|
||||
containers:
|
||||
- name: kube-router
|
||||
image: {{ kube_router_image_repo }}:{{ kube_router_image_tag }}
|
||||
imagePullPolicy: IfNotPresent
|
||||
imagePullPolicy: {{ k8s_image_pull_policy }}
|
||||
args:
|
||||
- --run-router={{ kube_router_run_router | bool }}
|
||||
- --run-firewall={{ kube_router_run_firewall | bool }}
|
||||
|
||||
Reference in New Issue
Block a user