Helper to transfer data to CephFs and setup wikis

This commit is contained in:
Paul-Henri Froidmont 2019-09-01 03:41:21 +02:00
parent 80321d5ec9
commit d77f2ef548
10 changed files with 163 additions and 39 deletions

View file

@ -1,16 +1,17 @@
---
- name: Create dockerComposeAll.sh
- name: Create scripts
template:
src: dockerComposeAll.sh
dest: /root/dockerComposeAll.sh
src: "{{ item }}"
dest: /root/{{ item }}
mode: 0700
- name: Create syncData.sh
template:
src: syncData.sh
dest: /root/syncData.sh
mode: 0700
- name: Create updateAll.sh
template:
src: updateAll.sh
dest: /root/updateAll.sh
loop:
- dockerComposeAll.sh
- syncData.sh
- updateAll.sh
- name: Create syncDataToK8s.sh
copy:
src: syncDataToK8s.sh
dest: /root/syncDataToK8s.sh
mode: 0700