aboutsummaryrefslogtreecommitdiffstats
path: root/overcloud.yaml
diff options
context:
space:
mode:
authorJiri Stransky <jistr@redhat.com>2016-04-15 17:55:30 +0200
committerJiri Stransky <jistr@redhat.com>2016-04-18 11:11:31 +0200
commitdbd88344d843e5783a4714c6a670af004a425c95 (patch)
treeec70950851a7cba4089775fa59cc76b438a4cb4c /overcloud.yaml
parent4afed8617e56b1d9648955b971d5c2e4cd3cd7f8 (diff)
Fix ControllerExtraConfig parameter name
We've had a typo for a while that a parameter is named "controllerExtraConfig" with lowercase c, which can be quite confusing for users because the other similar parameters (e.g. NovaComputeExtraConfig) consistently start with an upper case letter. We'll support both variants from now on, marking the typoed variant as deprecated. Change-Id: Ic67a4297e7fa08308889b95ba35389a01f70f5a4
Diffstat (limited to 'overcloud.yaml')
-rw-r--r--overcloud.yaml11
1 files changed, 8 insertions, 3 deletions
diff --git a/overcloud.yaml b/overcloud.yaml
index 20c853cd..2b0666b0 100644
--- a/overcloud.yaml
+++ b/overcloud.yaml
@@ -393,8 +393,7 @@ parameters:
controllerExtraConfig:
default: {}
description: |
- Controller specific configuration to inject into the cluster. Same
- structure as ExtraConfig.
+ Deprecated. Use ControllerExtraConfig via parameter_defaults instead.
type: json
controllerImage:
type: string
@@ -852,6 +851,12 @@ parameters:
List of resources to be removed from CephStorageResourceGroup when
doing an update which requires removal of specific resources.
+parameter_groups:
+- label: deprecated
+ description: Do not use deprecated params, they will be removed.
+ parameters:
+ - controllerExtraConfig
+
resources:
@@ -920,7 +925,7 @@ resources:
CinderEnableRbdBackend: {get_param: CinderEnableRbdBackend}
CloudDomain: {get_param: CloudDomain}
ControlVirtualInterface: {get_param: ControlVirtualInterface}
- ControllerExtraConfig: {get_param: controllerExtraConfig}
+ controllerExtraConfig: {get_param: controllerExtraConfig}
CorosyncIPv6: {get_param: CorosyncIPv6}
Debug: {get_param: Debug}
EnableFencing: {get_param: EnableFencing}