mirror of
https://github.com/kubernetes-sigs/kubespray.git
synced 2026-01-10 15:32:09 -03:30
* project: fix outdated tag and experimental Signed-off-by: Arthur Outhenin-Chalandre <arthur.outhenin-chalandre@proton.ch> * project: remove no longer useful noqa 301 Signed-off-by: Arthur Outhenin-Chalandre <arthur.outhenin-chalandre@proton.ch> * project: replace unnamed-task by name[missing] Signed-off-by: Arthur Outhenin-Chalandre <arthur.outhenin-chalandre@proton.ch> * project: fix daemon-reload -> daemon_reload Signed-off-by: Arthur Outhenin-Chalandre <arthur.outhenin-chalandre@proton.ch> --------- Signed-off-by: Arthur Outhenin-Chalandre <arthur.outhenin-chalandre@proton.ch>
34 lines
1.4 KiB
YAML
34 lines
1.4 KiB
YAML
---
|
|
- name: Cilium | Start Resources
|
|
kube:
|
|
name: "{{ item.item.name }}"
|
|
namespace: "kube-system"
|
|
kubectl: "{{ bin_dir }}/kubectl"
|
|
resource: "{{ item.item.type }}"
|
|
filename: "{{ kube_config_dir }}/{{ item.item.name }}-{{ item.item.file }}"
|
|
state: "latest"
|
|
loop: "{{ cilium_node_manifests.results }}"
|
|
when: inventory_hostname == groups['kube_control_plane'][0] and not item is skipped
|
|
|
|
- name: Cilium | Wait for pods to run
|
|
command: "{{ kubectl }} -n kube-system get pods -l k8s-app=cilium -o jsonpath='{.items[?(@.status.containerStatuses[0].ready==false)].metadata.name}'" # noqa literal-compare
|
|
register: pods_not_ready
|
|
until: pods_not_ready.stdout.find("cilium")==-1
|
|
retries: "{{ cilium_rolling_restart_wait_retries_count | int }}"
|
|
delay: "{{ cilium_rolling_restart_wait_retries_delay_seconds | int }}"
|
|
failed_when: false
|
|
when: inventory_hostname == groups['kube_control_plane'][0]
|
|
|
|
- name: Cilium | Hubble install
|
|
kube:
|
|
name: "{{ item.item.name }}"
|
|
namespace: "kube-system"
|
|
kubectl: "{{ bin_dir }}/kubectl"
|
|
resource: "{{ item.item.type }}"
|
|
filename: "{{ kube_config_dir }}/addons/hubble/{{ item.item.name }}-{{ item.item.file }}"
|
|
state: "latest"
|
|
loop: "{{ cilium_hubble_manifests.results }}"
|
|
when:
|
|
- inventory_hostname == groups['kube_control_plane'][0] and not item is skipped
|
|
- cilium_enable_hubble and cilium_hubble_install
|