From 4335fed787201ac03f689214af5a83ac5d206672 Mon Sep 17 00:00:00 2001 From: Dimitri Savineau Date: Fri, 18 Dec 2020 10:25:54 -0500 Subject: [PATCH] library: remove containerized parameter from cv The ceph-volume module relies on environment variables to determine if the command should be executed within a container or not. The containerized parameter isn't used anymore and we can remove it. Fixes: #6153 Signed-off-by: Dimitri Savineau (cherry picked from commit 613ab11b9be8cfe2c9ef4f1e1ff12510d794c6c7) --- library/ceph_volume.py | 7 ------- 1 file changed, 7 deletions(-) diff --git a/library/ceph_volume.py b/library/ceph_volume.py index f21241fcf..4224fb5b5 100644 --- a/library/ceph_volume.py +++ b/library/ceph_volume.py @@ -134,12 +134,6 @@ options: - Results will be returned in json format. - Only applicable if action is 'batch'. required: false - containerized: - description: - - Wether or not this is a containerized cluster. The value is - assigned or not depending on how the playbook runs. - required: false - default: None list: description: - List potential Ceph LVM metadata on a device @@ -552,7 +546,6 @@ def run_module(): block_db_devices=dict(type='list', required=False, default=[]), wal_devices=dict(type='list', required=False, default=[]), report=dict(type='bool', required=False, default=False), - containerized=dict(type='str', required=False, default=False), osd_fsid=dict(type='str', required=False), destroy=dict(type='bool', required=False, default=True), ) -- 2.39.5