1234567891011121314151617 |
- ---
- - name: apply ceph role
- collections:
- - community.aws
- hosts: ceph_servers
- vars:
- ansible_python_interpreter: /usr/bin/python3
- pre_tasks:
- - name: define ansible_python_interpreter group // linux distribution
- set_fact:
- ansible_python_interpreter: /usr/bin/python2
- when: ansible_distribution == 'CentOS' and ansible_distribution_major_version == '7'
- roles:
- - role: ceph
- #vars:
- # rgw_frontend_port: 443
- # rgw_ssl: true
|