Merge "Replace hardcoded 'br-ex' with NeutronPhysicalBridge parameter."
This commit is contained in:
commit
bfa407249e
@ -37,7 +37,7 @@ parameters:
|
|||||||
type: string
|
type: string
|
||||||
NeutronPublicInterface:
|
NeutronPublicInterface:
|
||||||
default: nic1
|
default: nic1
|
||||||
description: A port to add to the NeutronPhysicalBridge.
|
description: Which interface to add to the NeutronPhysicalBridge.
|
||||||
type: string
|
type: string
|
||||||
NodeIndex:
|
NodeIndex:
|
||||||
type: number
|
type: number
|
||||||
|
@ -58,9 +58,13 @@ parameters:
|
|||||||
type: string
|
type: string
|
||||||
constraints:
|
constraints:
|
||||||
- custom_constraint: nova.keypair
|
- custom_constraint: nova.keypair
|
||||||
|
NeutronPhysicalBridge:
|
||||||
|
default: 'br-ex'
|
||||||
|
description: An OVS bridge to create for accessing external networks.
|
||||||
|
type: string
|
||||||
NeutronPublicInterface:
|
NeutronPublicInterface:
|
||||||
default: nic1
|
default: nic1
|
||||||
description: What interface to bridge onto br-ex for network nodes.
|
description: Which interface to add to the NeutronPhysicalBridge.
|
||||||
type: string
|
type: string
|
||||||
ServiceNetMap:
|
ServiceNetMap:
|
||||||
default: {}
|
default: {}
|
||||||
@ -431,7 +435,7 @@ resources:
|
|||||||
- {get_param: NetworkDeploymentActions}
|
- {get_param: NetworkDeploymentActions}
|
||||||
- []
|
- []
|
||||||
input_values:
|
input_values:
|
||||||
bridge_name: br-ex
|
bridge_name: {get_param: NeutronPhysicalBridge}
|
||||||
interface_name: {get_param: NeutronPublicInterface}
|
interface_name: {get_param: NeutronPublicInterface}
|
||||||
|
|
||||||
# Resource for site-specific injection of root certificate
|
# Resource for site-specific injection of root certificate
|
||||||
|
@ -28,9 +28,13 @@ parameters:
|
|||||||
constraints:
|
constraints:
|
||||||
- custom_constraint: nova.keypair
|
- custom_constraint: nova.keypair
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
NeutronPhysicalBridge:
|
||||||
|
default: 'br-ex'
|
||||||
|
description: An OVS bridge to create for accessing tenant networks.
|
||||||
|
type: string
|
||||||
NeutronPublicInterface:
|
NeutronPublicInterface:
|
||||||
default: nic1
|
default: nic1
|
||||||
description: What interface to bridge onto br-ex for network nodes.
|
description: Which interface to add to the NeutronPhysicalBridge.
|
||||||
type: string
|
type: string
|
||||||
ServiceNetMap:
|
ServiceNetMap:
|
||||||
default: {}
|
default: {}
|
||||||
@ -409,7 +413,7 @@ resources:
|
|||||||
server: {get_resource: {{role}}}
|
server: {get_resource: {{role}}}
|
||||||
actions: {get_param: NetworkDeploymentActions}
|
actions: {get_param: NetworkDeploymentActions}
|
||||||
input_values:
|
input_values:
|
||||||
bridge_name: br-ex
|
bridge_name: {get_param: NeutronPhysicalBridge}
|
||||||
interface_name: {get_param: NeutronPublicInterface}
|
interface_name: {get_param: NeutronPublicInterface}
|
||||||
actions:
|
actions:
|
||||||
if:
|
if:
|
||||||
|
Loading…
Reference in New Issue
Block a user