mirror of https://github.com/ceph/ceph-ansible.git
ceph-defaults: remove backwards compat for containerized_deployment
The validation module does not get config options with the template syntax rendered, so we're gonna remove that and just default it to False. The backwards compat was schedule to be removed in 3.1 anyway. Signed-off-by: Andrew Schoen <aschoen@redhat.com>pull/2619/head
parent
c65ea7e9d7
commit
645f61c351
|
@ -503,8 +503,7 @@ mon_containerized_deployment: False # backward compatibility with stable-2.2, wi
|
||||||
osd_containerized_deployment: False # backward compatibility with stable-2.2, will disappear in stable 3.1
|
osd_containerized_deployment: False # backward compatibility with stable-2.2, will disappear in stable 3.1
|
||||||
mds_containerized_deployment: False # backward compatibility with stable-2.2, will disappear in stable 3.1
|
mds_containerized_deployment: False # backward compatibility with stable-2.2, will disappear in stable 3.1
|
||||||
rgw_containerized_deployment: False # backward compatibility with stable-2.2, will disappear in stable 3.1
|
rgw_containerized_deployment: False # backward compatibility with stable-2.2, will disappear in stable 3.1
|
||||||
containerized_deployment: "{{ True if mon_containerized_deployment or osd_containerized_deployment or mds_containerized_deployment or rgw_containerized_deployment else False }}" # backward compatibility with stable-2.2, will disappear in stable 3.1
|
containerized_deployment: False
|
||||||
|
|
||||||
|
|
||||||
############
|
############
|
||||||
# KV store #
|
# KV store #
|
||||||
|
|
Loading…
Reference in New Issue