From 4d5637fd8a3d76489da823f73401609b756afb6c Mon Sep 17 00:00:00 2001 From: Guillaume Abrioux Date: Wed, 10 Apr 2019 13:33:57 +0200 Subject: [PATCH] osd: remove legacy file ceph_disk_cli_options_facts.yml is not used anymore, let's remove it. Signed-off-by: Guillaume Abrioux --- .../tasks/ceph_disk_cli_options_facts.yml | 64 ------------------- 1 file changed, 64 deletions(-) delete mode 100644 roles/ceph-osd/tasks/ceph_disk_cli_options_facts.yml diff --git a/roles/ceph-osd/tasks/ceph_disk_cli_options_facts.yml b/roles/ceph-osd/tasks/ceph_disk_cli_options_facts.yml deleted file mode 100644 index 5c77a58bf..000000000 --- a/roles/ceph-osd/tasks/ceph_disk_cli_options_facts.yml +++ /dev/null @@ -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