Split designate envs
Because the designate parameters will always need to be edited for a deployment, a copy of the environment must be made. However, because there were resource_registry entries in the previous enable-designate environments those relative paths would become invalid if the file was moved. Splitting the resource_registry entries from the user-configured parameters should eliminate this problem. Change-Id: I8817a36e20e7a75b340a0d6cb0abf09e57b1fd63
This commit is contained in:
parent
0244ae08cd
commit
3abb38ae14
@ -4,14 +4,10 @@
|
|||||||
# Users are recommended to make changes to a copy of the file instead
|
# Users are recommended to make changes to a copy of the file instead
|
||||||
# of the original, if any customizations are needed.
|
# of the original, if any customizations are needed.
|
||||||
# *******************************************************************
|
# *******************************************************************
|
||||||
# title: Enable Designate Service
|
# title: Configure Designate Parameters for HA
|
||||||
# description: |
|
# description: |
|
||||||
# EXPERIMENTAL: This service is not considered ready for production and
|
# Sample configuration parameters for Designate that are appropriate
|
||||||
# should only be used for development and test purposes at this time.
|
# for an HA deployment. Requires the enable-designate environment.
|
||||||
#
|
|
||||||
# This environment enables the Designate services and provides sample
|
|
||||||
# configuration values for other services to allow them to integrate with
|
|
||||||
# Designate.
|
|
||||||
parameter_defaults:
|
parameter_defaults:
|
||||||
# The content for Designate's pools.yaml
|
# The content for Designate's pools.yaml
|
||||||
# Mandatory. This parameter must be set by the user.
|
# Mandatory. This parameter must be set by the user.
|
||||||
@ -129,9 +125,3 @@ parameter_defaults:
|
|||||||
# Type: comma_delimited_list
|
# Type: comma_delimited_list
|
||||||
NeutronPluginExtensions: qos,port_security,dns
|
NeutronPluginExtensions: qos,port_security,dns
|
||||||
|
|
||||||
resource_registry:
|
|
||||||
OS::TripleO::Services::DesignateApi: ../docker/services/designate-api.yaml
|
|
||||||
OS::TripleO::Services::DesignateCentral: ../docker/services/designate-central.yaml
|
|
||||||
OS::TripleO::Services::DesignateMDNS: ../docker/services/designate-mdns.yaml
|
|
||||||
OS::TripleO::Services::DesignateProducer: ../docker/services/designate-producer.yaml
|
|
||||||
OS::TripleO::Services::DesignateWorker: ../docker/services/designate-worker.yaml
|
|
69
environments/designate-config.yaml
Normal file
69
environments/designate-config.yaml
Normal file
@ -0,0 +1,69 @@
|
|||||||
|
# *******************************************************************
|
||||||
|
# This file was created automatically by the sample environment
|
||||||
|
# generator. Developers should use `tox -e genconfig` to update it.
|
||||||
|
# Users are recommended to make changes to a copy of the file instead
|
||||||
|
# of the original, if any customizations are needed.
|
||||||
|
# *******************************************************************
|
||||||
|
# title: Configure Designate Parameters
|
||||||
|
# description: |
|
||||||
|
# Sample configuration parameters for Designate. Requires the
|
||||||
|
# enable-designate environment.
|
||||||
|
parameter_defaults:
|
||||||
|
# The content for Designate's pools.yaml
|
||||||
|
# Mandatory. This parameter must be set by the user.
|
||||||
|
# Type: string
|
||||||
|
DesignatePools: |
|
||||||
|
- name: default
|
||||||
|
# The name is immutable. There will be no option to change the name after
|
||||||
|
# creation and the only way will to change it will be to delete it
|
||||||
|
# (and all zones associated with it) and recreate it.
|
||||||
|
description: Default Pool
|
||||||
|
|
||||||
|
attributes: {}
|
||||||
|
|
||||||
|
# List out the NS records for zones hosted within this pool
|
||||||
|
# This should be a record that is created outside of designate, that
|
||||||
|
# points to the public IP of the controller node.
|
||||||
|
ns_records:
|
||||||
|
- hostname: ns1-1.example.org.
|
||||||
|
priority: 1
|
||||||
|
|
||||||
|
# List out the nameservers for this pool. These are the actual BIND servers.
|
||||||
|
# We use these to verify changes have propagated to all nameservers.
|
||||||
|
nameservers:
|
||||||
|
- host: 10.0.0.51
|
||||||
|
port: 53
|
||||||
|
|
||||||
|
# List out the targets for this pool. For BIND there will be one
|
||||||
|
# entry for each BIND server, as we have to run rndc command on each server
|
||||||
|
targets:
|
||||||
|
- type: bind9
|
||||||
|
description: BIND9 Server 1
|
||||||
|
|
||||||
|
# List out the designate-mdns servers from which BIND servers should
|
||||||
|
# request zone transfers (AXFRs) from.
|
||||||
|
# This should be the IP of the controller node.
|
||||||
|
# If you have multiple controllers you can add multiple masters
|
||||||
|
# by running designate-mdns on them, and adding them here.
|
||||||
|
masters:
|
||||||
|
- host: 10.0.0.51
|
||||||
|
port: 5354
|
||||||
|
|
||||||
|
# BIND Configuration options
|
||||||
|
options:
|
||||||
|
host: 10.0.0.51
|
||||||
|
port: 53
|
||||||
|
rndc_host: 172.17.0.251
|
||||||
|
rndc_port: 953
|
||||||
|
rndc_key_file: /etc/rndc.key
|
||||||
|
|
||||||
|
# If True, enable the internal Neutron DNS server that provides name
|
||||||
|
# resolution between VMs. This parameter has no effect if
|
||||||
|
# NeutronDhcpAgentDnsmasqDnsServers is set.
|
||||||
|
# Type: boolean
|
||||||
|
NeutronEnableInternalDNS: True
|
||||||
|
|
||||||
|
# Comma-separated list of extensions enabled for the Neutron plugin.
|
||||||
|
# Type: comma_delimited_list
|
||||||
|
NeutronPluginExtensions: qos,port_security,dns
|
||||||
|
|
@ -9,68 +9,8 @@
|
|||||||
# EXPERIMENTAL: This service is not considered ready for production and
|
# EXPERIMENTAL: This service is not considered ready for production and
|
||||||
# should only be used for development and test purposes at this time.
|
# should only be used for development and test purposes at this time.
|
||||||
#
|
#
|
||||||
# This environment enables the Designate services and provides sample
|
# This environment enables the Designate services. One of the
|
||||||
# configuration values for other services to allow them to integrate with
|
# designate-config* environment files must also be included.
|
||||||
# Designate.
|
|
||||||
parameter_defaults:
|
|
||||||
# The content for Designate's pools.yaml
|
|
||||||
# Mandatory. This parameter must be set by the user.
|
|
||||||
# Type: string
|
|
||||||
DesignatePools: |
|
|
||||||
- name: default
|
|
||||||
# The name is immutable. There will be no option to change the name after
|
|
||||||
# creation and the only way will to change it will be to delete it
|
|
||||||
# (and all zones associated with it) and recreate it.
|
|
||||||
description: Default Pool
|
|
||||||
|
|
||||||
attributes: {}
|
|
||||||
|
|
||||||
# List out the NS records for zones hosted within this pool
|
|
||||||
# This should be a record that is created outside of designate, that
|
|
||||||
# points to the public IP of the controller node.
|
|
||||||
ns_records:
|
|
||||||
- hostname: ns1-1.example.org.
|
|
||||||
priority: 1
|
|
||||||
|
|
||||||
# List out the nameservers for this pool. These are the actual BIND servers.
|
|
||||||
# We use these to verify changes have propagated to all nameservers.
|
|
||||||
nameservers:
|
|
||||||
- host: 10.0.0.51
|
|
||||||
port: 53
|
|
||||||
|
|
||||||
# List out the targets for this pool. For BIND there will be one
|
|
||||||
# entry for each BIND server, as we have to run rndc command on each server
|
|
||||||
targets:
|
|
||||||
- type: bind9
|
|
||||||
description: BIND9 Server 1
|
|
||||||
|
|
||||||
# List out the designate-mdns servers from which BIND servers should
|
|
||||||
# request zone transfers (AXFRs) from.
|
|
||||||
# This should be the IP of the controller node.
|
|
||||||
# If you have multiple controllers you can add multiple masters
|
|
||||||
# by running designate-mdns on them, and adding them here.
|
|
||||||
masters:
|
|
||||||
- host: 10.0.0.51
|
|
||||||
port: 5354
|
|
||||||
|
|
||||||
# BIND Configuration options
|
|
||||||
options:
|
|
||||||
host: 10.0.0.51
|
|
||||||
port: 53
|
|
||||||
rndc_host: 172.17.0.251
|
|
||||||
rndc_port: 953
|
|
||||||
rndc_key_file: /etc/rndc.key
|
|
||||||
|
|
||||||
# If True, enable the internal Neutron DNS server that provides name
|
|
||||||
# resolution between VMs. This parameter has no effect if
|
|
||||||
# NeutronDhcpAgentDnsmasqDnsServers is set.
|
|
||||||
# Type: boolean
|
|
||||||
NeutronEnableInternalDNS: True
|
|
||||||
|
|
||||||
# Comma-separated list of extensions enabled for the Neutron plugin.
|
|
||||||
# Type: comma_delimited_list
|
|
||||||
NeutronPluginExtensions: qos,port_security,dns
|
|
||||||
|
|
||||||
resource_registry:
|
resource_registry:
|
||||||
OS::TripleO::Services::DesignateApi: ../docker/services/designate-api.yaml
|
OS::TripleO::Services::DesignateApi: ../docker/services/designate-api.yaml
|
||||||
OS::TripleO::Services::DesignateCentral: ../docker/services/designate-central.yaml
|
OS::TripleO::Services::DesignateCentral: ../docker/services/designate-central.yaml
|
||||||
|
@ -6,15 +6,22 @@ environments:
|
|||||||
EXPERIMENTAL: This service is not considered ready for production and
|
EXPERIMENTAL: This service is not considered ready for production and
|
||||||
should only be used for development and test purposes at this time.
|
should only be used for development and test purposes at this time.
|
||||||
|
|
||||||
This environment enables the Designate services and provides sample
|
This environment enables the Designate services. One of the
|
||||||
configuration values for other services to allow them to integrate with
|
designate-config* environment files must also be included.
|
||||||
Designate.
|
# FIXME(bnemec): files should not be a required key.
|
||||||
|
files: {}
|
||||||
resource_registry:
|
resource_registry:
|
||||||
OS::TripleO::Services::DesignateApi: ../docker/services/designate-api.yaml
|
OS::TripleO::Services::DesignateApi: ../docker/services/designate-api.yaml
|
||||||
OS::TripleO::Services::DesignateCentral: ../docker/services/designate-central.yaml
|
OS::TripleO::Services::DesignateCentral: ../docker/services/designate-central.yaml
|
||||||
OS::TripleO::Services::DesignateProducer: ../docker/services/designate-producer.yaml
|
OS::TripleO::Services::DesignateProducer: ../docker/services/designate-producer.yaml
|
||||||
OS::TripleO::Services::DesignateWorker: ../docker/services/designate-worker.yaml
|
OS::TripleO::Services::DesignateWorker: ../docker/services/designate-worker.yaml
|
||||||
OS::TripleO::Services::DesignateMDNS: ../docker/services/designate-mdns.yaml
|
OS::TripleO::Services::DesignateMDNS: ../docker/services/designate-mdns.yaml
|
||||||
|
-
|
||||||
|
name: designate-config
|
||||||
|
title: Configure Designate Parameters
|
||||||
|
description: |
|
||||||
|
Sample configuration parameters for Designate. Requires the
|
||||||
|
enable-designate environment.
|
||||||
files:
|
files:
|
||||||
puppet/services/neutron-plugin-ml2.yaml:
|
puppet/services/neutron-plugin-ml2.yaml:
|
||||||
parameters:
|
parameters:
|
||||||
@ -75,7 +82,11 @@ environments:
|
|||||||
rndc_key_file: /etc/rndc.key
|
rndc_key_file: /etc/rndc.key
|
||||||
children:
|
children:
|
||||||
-
|
-
|
||||||
name: enable-designate-ha
|
name: designate-config-ha
|
||||||
|
title: Configure Designate Parameters for HA
|
||||||
|
description: |
|
||||||
|
Sample configuration parameters for Designate that are appropriate
|
||||||
|
for an HA deployment. Requires the enable-designate environment.
|
||||||
sample_values:
|
sample_values:
|
||||||
NeutronPluginExtensions: qos,port_security,dns
|
NeutronPluginExtensions: qos,port_security,dns
|
||||||
NeutronEnableInternalDNS: True
|
NeutronEnableInternalDNS: True
|
||||||
|
Loading…
Reference in New Issue
Block a user