ee65c76a27
This change adds a StorageNFS network. It's required by https://review.openstack.org/#/c/471245 which implements NFS Ganesha backend for Manila service. To define and enable the StorageNFS network, deploy using network_data_ganesha.yaml instead of network_data.yaml. Besides the former adding the StorageNFS network, these are otherwise identical. If enabled it's also necessary to add StorageNFSIpSubnet and StorageNFSNetworkVlanID heat parameters into network templates. Co-Authored-By: Dan Sneddon <dsneddon@redhat.com> Change-Id: If31722d669efe91082c93ecb815e6c41676480c8 Partially-Implements: blueprint nfs-ganesha
71 lines
2.0 KiB
YAML
71 lines
2.0 KiB
YAML
heat_template_version: queens
|
|
|
|
description: >
|
|
Software Config to drive os-net-config for a simple bridge configured
|
|
with a static IP address for the ctlplane network.
|
|
|
|
parameters:
|
|
ControlPlaneIp:
|
|
default: ''
|
|
description: IP address/subnet on the ctlplane network
|
|
type: string
|
|
ExternalIpSubnet:
|
|
default: ''
|
|
description: IP address/subnet on the external network
|
|
type: string
|
|
InternalApiIpSubnet:
|
|
default: ''
|
|
description: IP address/subnet on the internal_api network
|
|
type: string
|
|
StorageIpSubnet:
|
|
default: ''
|
|
description: IP address/subnet on the storage network
|
|
type: string
|
|
StorageMgmtIpSubnet:
|
|
default: ''
|
|
description: IP address/subnet on the storage_mgmt network
|
|
type: string
|
|
StorageNFSIpSubnet:
|
|
default: ''
|
|
description: IP address/subnet on the storage_nfs network
|
|
type: string
|
|
TenantIpSubnet:
|
|
default: ''
|
|
description: IP address/subnet on the tenant network
|
|
type: string
|
|
ManagementIpSubnet:
|
|
default: ''
|
|
description: IP address/subnet on the management network
|
|
type: string
|
|
ControlPlaneSubnetCidr: # Override this via parameter_defaults
|
|
default: '24'
|
|
description: The subnet CIDR of the control plane network.
|
|
type: string
|
|
|
|
resources:
|
|
OsNetConfigImpl:
|
|
type: OS::Heat::SoftwareConfig
|
|
properties:
|
|
group: script
|
|
config:
|
|
str_replace:
|
|
template: |
|
|
#!/bin/bash
|
|
if ! ip addr show dev $bridge_name | grep CONTROLPLANEIP/CONTROLPLANESUBNETCIDR; then
|
|
ip addr add CONTROLPLANEIP/CONTROLPLANESUBNETCIDR dev $bridge_name
|
|
fi
|
|
params:
|
|
CONTROLPLANEIP: {get_param: ControlPlaneIp}
|
|
CONTROLPLANESUBNETCIDR: {get_param: ControlPlaneSubnetCidr}
|
|
inputs:
|
|
-
|
|
name: bridge_name
|
|
default: br-ex
|
|
description: bridge-name
|
|
type: String
|
|
|
|
outputs:
|
|
OS::stack_id:
|
|
description: The OsNetConfigImpl resource.
|
|
value: {get_resource: OsNetConfigImpl}
|