blob: 02c654f24d553a9ce05c322fac5b94d569327a2b [file] [log] [blame]
Petr Ospalý1af97d92018-12-19 15:00:09 +01001---
2- name: Setup nfs server
3 hosts: nfs-server
4 roles:
Samuli Silvius51d7d012019-03-19 08:45:54 +02005 - role: nfs
6 when: groups.kubernetes | length > 1
Petr Ospalý1af97d92018-12-19 15:00:09 +01007
8- name: Setup nfs mounts
9 hosts: kubernetes:!nfs-server
10 roles:
Samuli Silvius51d7d012019-03-19 08:45:54 +020011 - role: nfs
12 when: groups.kubernetes | length > 1
Petr Ospalý1af97d92018-12-19 15:00:09 +010013
14- name: Install Helm application {{ app_name }} into offline Kubernetes cluster
15 hosts: infrastructure
16 roles:
Samuli Silvius51d7d012019-03-19 08:45:54 +020017 - application