fix: qualify Flux HelmChart bootstrap resources
This commit is contained in:
@@ -1,15 +1,19 @@
|
||||
---
|
||||
- name: Pre-pull Rancher images into containerd
|
||||
command: /usr/local/bin/ctr -n k8s.io images pull {{ item }}
|
||||
command: timeout 180s /usr/local/bin/ctr -n k8s.io images pull {{ item }}
|
||||
register: rancher_image_pull
|
||||
loop: "{{ rancher_images_to_prepull }}"
|
||||
retries: 6
|
||||
delay: 20
|
||||
until: rancher_image_pull.rc == 0
|
||||
changed_when: rancher_image_pull.rc == 0
|
||||
failed_when: false
|
||||
|
||||
- name: Report Rancher images that did not pre-pull
|
||||
- name: Report Rancher images that did not pre-pull after retries
|
||||
debug:
|
||||
msg: >-
|
||||
Rancher image pre-pull failed for {{ item.item }}: {{ item.stderr | default('no stderr') }}
|
||||
Best-effort Rancher image pre-pull did not complete for {{ item.item }} after
|
||||
{{ item.attempts | default(1) }} attempt(s): {{ item.stderr | default('no stderr') }}
|
||||
loop: "{{ rancher_image_pull.results | default([]) }}"
|
||||
loop_control:
|
||||
label: "{{ item.item }}"
|
||||
|
||||
Reference in New Issue
Block a user