16 lines
516 B
YAML
16 lines
516 B
YAML
######################################
|
|
# Setup Storage #
|
|
######################################
|
|
---
|
|
- name: Storage block
|
|
when: inventory_hostname in (groups['controller_init'])
|
|
block:
|
|
- name: Read rook-ceph storage values
|
|
include_vars:
|
|
file: ../vars/k8s_cluster/storage/rook_ceph.yml
|
|
|
|
- name: rook internal ceph
|
|
when: inventory_hostname in groups['controller_init']
|
|
block:
|
|
- import_tasks: ../tasks/k8s_cluster/storage/install_rook_ceph_storage.yml
|