diff options
author | Emilien Macchi <emilien@redhat.com> | 2017-04-28 10:09:44 -0400 |
---|---|---|
committer | Emilien Macchi <emilien@redhat.com> | 2017-04-29 18:43:31 +0000 |
commit | 4d0dfd810c5516b0509fa891184476f47f2eb52d (patch) | |
tree | b51f5e390171648a8707b6770e55f8be4dbdca44 | |
parent | 68402dc7f538418b1e0eb23bb782daf7e3bcadd4 (diff) |
Allow to deploy Octavia API & Neutron Server on 2 different nodes
Exporting the neutron::server parameter into the neutron_api service, so
Octavia API and Neutron Server can be separated.
Change-Id: Iee28b0e84a00bd589d6f14a73f0c3f32d310b393
Closes-Bug: #1687026
-rw-r--r-- | puppet/services/octavia-api.yaml | 3 | ||||
-rw-r--r-- | releasenotes/notes/octavia-1687026-c01313aab53f55a4.yaml | 5 |
2 files changed, 7 insertions, 1 deletions
diff --git a/puppet/services/octavia-api.yaml b/puppet/services/octavia-api.yaml index 2f898a67..99212857 100644 --- a/puppet/services/octavia-api.yaml +++ b/puppet/services/octavia-api.yaml @@ -84,7 +84,6 @@ outputs: - 9876 - 13876 octavia::api::host: {get_param: [ServiceNetMap, OctaviaApiNetwork]} - neutron::server::service_providers: ['LOADBALANCERV2:Octavia:neutron_lbaas.drivers.octavia.driver.OctaviaDriver:default'] step_config: | include tripleo::profile::base::octavia::api service_config_settings: @@ -103,3 +102,5 @@ outputs: octavia::db::mysql::allowed_hosts: - '%' - "%{hiera('mysql_bind_host')}" + neutron_api: + neutron::server::service_providers: ['LOADBALANCERV2:Octavia:neutron_lbaas.drivers.octavia.driver.OctaviaDriver:default'] diff --git a/releasenotes/notes/octavia-1687026-c01313aab53f55a4.yaml b/releasenotes/notes/octavia-1687026-c01313aab53f55a4.yaml new file mode 100644 index 00000000..2ba01c71 --- /dev/null +++ b/releasenotes/notes/octavia-1687026-c01313aab53f55a4.yaml @@ -0,0 +1,5 @@ +--- +fixes: + - | + Octavia API and Neutron Server can now be deployed on separated nodes. + See https://bugs.launchpad.net/tripleo/+bug/1687026 |