collection of ansible roles
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

17 lines
435 B

---
- name: "Kubernetes | Copy yaml files"
copy:
src: "{{ item }}"
dest: "/tmp/{{ item }}"
with_items:
- operator.yaml
- cluster.yaml
- dashboard-external-https.yaml
- storageclass.yaml
- name: "Kubernetes | Deploying rook: {{ item }}"
shell: "kubectl create -f /tmp/{{ item }} && sleep 10"
with_items:
- operator.yaml
- cluster.yaml
- dashboard-external-https.yaml
- storageclass.yaml