diff options
author | jhinman1 <john.hinman@intel.com> | 2017-07-14 20:28:14 -0400 |
---|---|---|
committer | jhinman1 <john.hinman@intel.com> | 2017-07-31 19:39:38 -0400 |
commit | 2622e8417a9fca67fb0cac480410cf9c5912725a (patch) | |
tree | 1753756c27f75a54a83180056be0b6543ee1dc8c /config | |
parent | 64e055560e1f3ed47805d921541d884ea79624cf (diff) |
Adds Barometer service
Adds Barometer service as a deploy option to Compute nodes by specifying
barometer as true in deploy settings.
Barometer packages are installed only for x86_64.
Adds scenarios os-nosdn-bar-ha and os-nosdn-bar-noha.
Add scenarios to opnfv-apex-common.spec.
Temporarily remove references to snmp packages.
apex-tripleo-heat-templates: I397d2557639c87ab8afacd076a5b9fd7c056dce7
apex-puppet-tripleo: I878ff8d1e0a8b96f3380bb77f168cd5a4c3f6543
Puppet module is at: https://github.com/johnhinman/puppet-barometer.
Change-Id: Ic087c2052f7849ee2cf6c63224558c2b36a8ca1f
Signed-off-by: jhinman1 <john.hinman@intel.com>
Diffstat (limited to 'config')
-rw-r--r-- | config/deploy/os-nosdn-bar-ha.yaml | 9 | ||||
-rw-r--r-- | config/deploy/os-nosdn-bar-noha.yaml | 9 |
2 files changed, 18 insertions, 0 deletions
diff --git a/config/deploy/os-nosdn-bar-ha.yaml b/config/deploy/os-nosdn-bar-ha.yaml new file mode 100644 index 00000000..b59c034c --- /dev/null +++ b/config/deploy/os-nosdn-bar-ha.yaml @@ -0,0 +1,9 @@ +--- +global_params: + ha_enabled: true + +deploy_options: + sdn_controller: false + sfc: false + vpn: false + barometer: true diff --git a/config/deploy/os-nosdn-bar-noha.yaml b/config/deploy/os-nosdn-bar-noha.yaml new file mode 100644 index 00000000..f7de7a16 --- /dev/null +++ b/config/deploy/os-nosdn-bar-noha.yaml @@ -0,0 +1,9 @@ +--- +global_params: + ha_enabled: false + +deploy_options: + sdn_controller: false + sfc: false + vpn: false + barometer: true |