11 lines
297 B
YAML
11 lines
297 B
YAML
|
|
---
|
||
|
|
- name: Pre-pull bootstrap images into containerd
|
||
|
|
command: /usr/local/bin/ctr -n k8s.io images pull {{ item }}
|
||
|
|
register: bootstrap_image_pull
|
||
|
|
retries: 12
|
||
|
|
delay: 15
|
||
|
|
until: bootstrap_image_pull.rc == 0
|
||
|
|
loop: "{{ bootstrap_prepull_images }}"
|
||
|
|
changed_when: true
|
||
|
|
failed_when: false
|