diff options
author | Lokesh Jain <lokesh.jain@gmail.com> | 2015-10-01 15:57:57 -0400 |
---|---|---|
committer | Lokesh Jain <lokesh.jain@gmail.com> | 2015-11-30 14:22:08 -0500 |
commit | ee9b8f3a5d86c1258c717dc598a7bd34d47a367a (patch) | |
tree | e25879f853134437faf3a1230c1ab10ecf590966 /puppet/extraconfig/pre_deploy/compute | |
parent | fdc2359e4515dfa50048b3b6cd4896ef4744cc5f (diff) |
Changes for configuring Nuage
Added ExtraConfig templates and environment files for Nuage specific parameters.
Modified overcloud_compute.pp and overcloud_controller.pp to conditionally
include Nuage plugin and agents.
Change-Id: I95510c753b0a262c73566481f9e94279970f4a4f
Diffstat (limited to 'puppet/extraconfig/pre_deploy/compute')
-rw-r--r-- | puppet/extraconfig/pre_deploy/compute/nova-nuage.yaml | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/puppet/extraconfig/pre_deploy/compute/nova-nuage.yaml b/puppet/extraconfig/pre_deploy/compute/nova-nuage.yaml new file mode 100644 index 00000000..64d0a630 --- /dev/null +++ b/puppet/extraconfig/pre_deploy/compute/nova-nuage.yaml @@ -0,0 +1,42 @@ +heat_template_version: 2015-04-30 + +description: Configure hieradata for Nuage configuration on the Compute + +parameters: + server: + description: ID of the compute node to apply this config to + type: string + + NuageActiveController: + description: IP address of the Active Virtualized Services Controller (VSC) + type: string + NuageStandbyController: + description: IP address of the Standby Virtualized Services Controller (VSC) + type: string + +resources: + NovaNuageConfig: + type: OS::Heat::StructuredConfig + properties: + group: os-apply-config + config: + hiera: + datafiles: + nova_nuage_data: + mapped_data: + nuage::vrs::active_controller: {get_input: ActiveController} + nuage::vrs::standby_controller: {get_input: StandbyController} + + NovaNuageDeployment: + type: OS::Heat::StructuredDeployment + properties: + config: {get_resource: NovaNuageConfig} + server: {get_param: server} + input_values: + ActiveController: {get_param: NuageActiveController} + StandbyController: {get_param: NuageStandbyController} + +outputs: + deploy_stdout: + description: Deployment reference, used to trigger puppet apply on changes + value: {get_attr: [NovaNuageDeployment, deploy_stdout]} |