blob: c90c4ed5c34fad3f6b53e2859106b2a2e7f4e645 [file] [log] [blame]
SF initial configuratora26c41e2022-10-06 13:33:13 +03001---
2- name: Create src directory
3 command: >
4 oc --context "{{ item.1.context }}"
5 --namespace "{{ item.1.namespace }}"
6 exec {{ item.1.pod }} mkdir src
7 delegate_to: localhost
8
9- name: Copy src repos to the pod
10 command: >
11 oc --context "{{ item.1.context }}"
12 --namespace "{{ item.1.namespace }}"
13 rsync -q --progress=false
14 {{ zuul.executor.src_root }}/
15 {{ item.1.pod }}:src/
16 no_log: true
17 delegate_to: localhost