SF initial configurator | a26c41e | 2022-10-06 13:33:13 +0300 | [diff] [blame] | 1 | --- |
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 |