aboutsummaryrefslogtreecommitdiffstats
path: root/puppet/extraconfig/pre_deploy/compute/nova-nuage.yaml
blob: 64d0a6305a4fc0b55b91de3b7bbe730b5e4f0676 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
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]}