Browse Source

fix(bootstrap-os): do not install pkgs requirements on flatcar (#11252)

Fix regression added in 663fcd104c for
flatcar nodes.

See: 663fcd104c

Co-authored-by: Anthony Delannoy <adelannoy@wiremind.io>
pull/11288/head
k8s-infra-cherrypick-robot 6 months ago
committed by GitHub
parent
commit
881452d0f9
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 0 deletions
  1. 1
      roles/kubernetes/preinstall/tasks/0070-system-packages.yml

1
roles/kubernetes/preinstall/tasks/0070-system-packages.yml

@ -82,5 +82,6 @@
until: pkgs_task_result is succeeded until: pkgs_task_result is succeeded
retries: "{{ pkg_install_retries }}" retries: "{{ pkg_install_retries }}"
delay: "{{ retry_stagger | random + 3 }}" delay: "{{ retry_stagger | random + 3 }}"
when: not (ansible_os_family in ["Flatcar", "Flatcar Container Linux by Kinvolk"] or is_fedora_coreos)
tags: tags:
- bootstrap-os - bootstrap-os
Loading…
Cancel
Save