mirror of https://github.com/ceph/ceph-ansible.git
osd: remove legacy file
ceph_disk_cli_options_facts.yml is not used anymore, let's remove it. Signed-off-by: Guillaume Abrioux <gabrioux@redhat.com>pull/3851/head
parent
2888c0825f
commit
4d5637fd8a
|
@ -1,64 +0,0 @@
|
|||
---
|
||||
- name: set_fact ceph_disk_cli_options '--cluster {{ cluster }} --bluestore'
|
||||
set_fact:
|
||||
ceph_disk_cli_options: "--cluster {{ cluster }} --bluestore"
|
||||
when:
|
||||
- osd_objectstore == 'bluestore'
|
||||
- not dmcrypt
|
||||
- not containerized_deployment
|
||||
|
||||
- name: set_fact ceph_disk_cli_options 'ceph_disk_cli_options'
|
||||
set_fact:
|
||||
ceph_disk_cli_options: "--cluster {{ cluster }} --filestore"
|
||||
when:
|
||||
- osd_objectstore == 'filestore'
|
||||
- not dmcrypt
|
||||
- not containerized_deployment
|
||||
|
||||
- name: set_fact ceph_disk_cli_options '--cluster {{ cluster }} --bluestore --dmcrypt'
|
||||
set_fact:
|
||||
ceph_disk_cli_options: "--cluster {{ cluster }} --bluestore --dmcrypt"
|
||||
when:
|
||||
- osd_objectstore == 'bluestore'
|
||||
- dmcrypt
|
||||
- not containerized_deployment
|
||||
|
||||
- name: set_fact ceph_disk_cli_options '--cluster {{ cluster }} --filestore --dmcrypt'
|
||||
set_fact:
|
||||
ceph_disk_cli_options: "--cluster {{ cluster }} --filestore --dmcrypt"
|
||||
when:
|
||||
- osd_objectstore == 'filestore'
|
||||
- dmcrypt
|
||||
- not containerized_deployment
|
||||
|
||||
- name: set_fact docker_env_args '-e OSD_BLUESTORE=0 -e OSD_FILESTORE=1 -e OSD_DMCRYPT=0'
|
||||
set_fact:
|
||||
docker_env_args: -e OSD_BLUESTORE=0 -e OSD_FILESTORE=1 -e OSD_DMCRYPT=0
|
||||
when:
|
||||
- containerized_deployment
|
||||
- osd_objectstore == 'filestore'
|
||||
- not dmcrypt
|
||||
|
||||
- name: set_fact docker_env_args '-e OSD_BLUESTORE=0 -e OSD_FILESTORE=1 -e OSD_DMCRYPT=1'
|
||||
set_fact:
|
||||
docker_env_args: -e OSD_BLUESTORE=0 -e OSD_FILESTORE=1 -e OSD_DMCRYPT=1
|
||||
when:
|
||||
- containerized_deployment
|
||||
- osd_objectstore == 'filestore'
|
||||
- dmcrypt
|
||||
|
||||
- name: set_fact docker_env_args '-e OSD_BLUESTORE=1 -e OSD_FILESTORE=0 -e OSD_DMCRYPT=0'
|
||||
set_fact:
|
||||
docker_env_args: -e OSD_BLUESTORE=1 -e OSD_FILESTORE=0 -e OSD_DMCRYPT=0
|
||||
when:
|
||||
- containerized_deployment
|
||||
- osd_objectstore == 'bluestore'
|
||||
- not dmcrypt
|
||||
|
||||
- name: set_fact docker_env_args '-e OSD_BLUESTORE=1 -e OSD_FILESTORE=0 -e OSD_DMCRYPT=1'
|
||||
set_fact:
|
||||
docker_env_args: -e OSD_BLUESTORE=1 -e OSD_FILESTORE=0 -e OSD_DMCRYPT=1
|
||||
when:
|
||||
- containerized_deployment
|
||||
- osd_objectstore == 'bluestore'
|
||||
- dmcrypt
|
Loading…
Reference in New Issue