The package command could fail due to intermittent network issues. The command will be retried 3 times (Ansible default) and will fail if there is a package or repo issue. Package failures (flakes) have been observed in CI testing.
@@ -5,6 +5,8 @@
update_cache: true
async: 3600
poll: 30
+ register: result
+ until: result is succeeded
# FIXME: Creation of these directories should not be required for crio 1.14.5
- name: Create CNI dirs for crio
@@ -48,6 +50,8 @@
state: present
rescue:
- name: Package install failure message
@@ -55,6 +55,8 @@
package:
name: nfs-utils
- name: Wait for new nodes to be ready
k8s_facts:
kubeconfig: "{{ kubeconfig_path }}"