9ffc65f8f3
* Lint everything in the repository with yamllint * yamllint fixes: syntax fixes only * yamllint fixes: move comments to play names * yamllint fixes: indent comments in .gitlab-ci.yml file
24 lines
414 B
YAML
24 lines
414 B
YAML
---
|
|
- hosts: gfs-cluster
|
|
gather_facts: false
|
|
vars:
|
|
ansible_ssh_pipelining: false
|
|
roles:
|
|
- { role: bootstrap-os, tags: bootstrap-os}
|
|
|
|
- hosts: all
|
|
gather_facts: true
|
|
|
|
- hosts: gfs-cluster
|
|
vars:
|
|
ansible_ssh_pipelining: true
|
|
roles:
|
|
- { role: glusterfs/server }
|
|
|
|
- hosts: k8s-cluster
|
|
roles:
|
|
- { role: glusterfs/client }
|
|
|
|
- hosts: kube-master[0]
|
|
roles:
|
|
- { role: kubernetes-pv }
|