We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 515e394 commit 23e5fc0Copy full SHA for 23e5fc0
1 file changed
ansible/roles/run-test-target/tasks/pull-images.yml
@@ -12,7 +12,8 @@
12
delegate_to: localhost
13
14
- name: Pull QA images
15
- command: "{{ 'sudo' if runtime_as_root else '' }} {{ runtime_command }} pull {{ item.value }}-{{ qa_tag }}"
+ become: "{{ runtime_as_root }}"
16
+ command: "{{ runtime_command }} pull {{ item.value }}-{{ qa_tag }}"
17
loop: "{{ images.qa | dict2items }}"
18
# parallel for speeeeed
19
async: 300
@@ -21,7 +22,8 @@
21
22
ignore_errors: true
23
24
- name: Pull non-QA images
- command: "{{ 'sudo' if runtime_as_root else '' }} {{ runtime_command }} pull {{ item.value }}"
25
26
+ command: "{{ runtime_command }} pull {{ item.value }}"
27
loop: "{{ images.non_qa | dict2items }}"
28
29
0 commit comments