ceph-ansible/roles/ceph-iscsi-gw/tasks/main.yml

23 lines
747 B
YAML
Raw Normal View History

---
- name: include common.yml
include_tasks: common.yml
- name: include non-container/prerequisites.yml
include_tasks: non-container/prerequisites.yml
when: not containerized_deployment
# deploy_ssl_keys used the ansible controller to create self-signed crt/key/pub files
# and transfers them to /etc/ceph directory on each controller. SSL certs are used by
# the API for https support.
- name: include deploy_ssl_keys.yml
include_tasks: deploy_ssl_keys.yml
when: generate_crt|bool
- name: include non-container/configure_iscsi.yml
include_tasks: non-container/configure_iscsi.yml
when: not containerized_deployment
- name: include containerized.yml
include_tasks: container/containerized.yml
when: containerized_deployment