This repository has been archived by the owner on Feb 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 178
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge "Designate: split bind instance into separate template"
- Loading branch information
Showing
21 changed files
with
198 additions
and
64 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
178 changes: 178 additions & 0 deletions
178
deployment/experimental/designate/designate-bind-container.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,178 @@ | ||
heat_template_version: rocky | ||
|
||
description: > | ||
OpenStack containerized bind9 for designate | ||
parameters: | ||
ContainerDesignateBackendBIND9Image: | ||
description: image | ||
type: string | ||
ContainerDesignateConfigImage: | ||
description: The container image to use for the designate config_volume | ||
type: string | ||
EndpointMap: | ||
default: {} | ||
description: Mapping of service endpoint -> protocol. Typically set | ||
via parameter_defaults in the resource registry. | ||
type: json | ||
ServiceData: | ||
default: {} | ||
description: Dictionary packing service data | ||
type: json | ||
ServiceNetMap: | ||
default: {} | ||
description: Mapping of service_name -> network name. Typically set | ||
via parameter_defaults in the resource registry. This | ||
mapping overrides those in ServiceNetMapDefaults. | ||
type: json | ||
DefaultPasswords: | ||
default: {} | ||
type: json | ||
RoleName: | ||
default: '' | ||
description: Role name on which the service is applied | ||
type: string | ||
RoleParameters: | ||
default: {} | ||
description: Parameters specific to the role | ||
type: json | ||
MonitoringSubscriptionDesignateBind: | ||
default: 'overcloud-designate-bind' | ||
type: string | ||
DesignateRndcKey: | ||
description: The rndc key secret for communication with BIND. | ||
type: string | ||
hidden: true | ||
|
||
|
||
resources: | ||
|
||
ContainersCommon: | ||
type: ../../containers-common.yaml | ||
|
||
DesignateBase: | ||
type: ./designate-base.yaml | ||
properties: | ||
EndpointMap: {get_param: EndpointMap} | ||
ServiceData: {get_param: ServiceData} | ||
ServiceNetMap: {get_param: ServiceNetMap} | ||
RoleName: {get_param: RoleName} | ||
RoleParameters: {get_param: RoleParameters} | ||
|
||
outputs: | ||
role_data: | ||
description: Role data for the Designate Bind instance. | ||
value: | ||
service_name: designate_bind | ||
firewall_rules: | ||
'140 designate_worker udp': | ||
proto: 'udp' | ||
dport: | ||
- 53 | ||
- 953 | ||
'141 designate_worker tcp': | ||
proto: 'tcp' | ||
dport: | ||
- 53 | ||
- 953 | ||
monitoring_subscription: {get_param: MonitoringSubscriptionDesignateBind} | ||
config_settings: | ||
map_merge: | ||
- get_attr: [DesignateBase, role_data, config_settings] | ||
- designate_rndc_key: {get_param: DesignateRndcKey} | ||
dns::vardir: /var/named-persistent | ||
dns::recursion: 'no' | ||
# Because we generate the key locally and don't want the puppet | ||
# module to do it, we set its path to /dev/null. This means we need | ||
# to explicitly include /etc/rndc.key though since the default config | ||
# will just include /dev/null. | ||
dns::rndckeypath: /dev/null | ||
dns::additional_directives: | ||
- include "/etc/rndc.key"; | ||
dns::additional_options: | ||
listen-on: | ||
str_replace: | ||
template: | ||
"{ %{hiera('$NETWORK')}; }" | ||
params: | ||
$NETWORK: {get_param: [ServiceNetMap, BINDNetwork]} | ||
tripleo::profile::base::designate::rndc_host: | ||
str_replace: | ||
template: | ||
"%{hiera('$NETWORK')}" | ||
params: | ||
$NETWORK: {get_param: [ServiceNetMap, DesignateApiNetwork]} | ||
tripleo::profile::base::designate::rndc_allowed_addresses: | ||
get_param: | ||
- ServiceData | ||
- net_cidr_map | ||
- {get_param: [ServiceNetMap, DesignateApiNetwork]} | ||
designate::backend::bind9::rndc_host: | ||
str_replace: | ||
template: | ||
"%{hiera('$NETWORK')}" | ||
params: | ||
$NETWORK: {get_param: [ServiceNetMap, DesignateApiNetwork]} | ||
# BEGIN DOCKER SETTINGS | ||
# TODO(beagles): puppet-desginate is doing some configuration in | ||
# dns::options_path so it seems like we need to run this puppet here for | ||
# the time being at least. I don't think there is a path from heat | ||
# var->hiera->puppet->named configuration at the moment though. | ||
puppet_config: | ||
config_volume: designate | ||
puppet_tags: designate_config,dns_config | ||
step_config: | ||
list_join: | ||
- "\n" | ||
- - {get_attr: [DesignateBase, role_data, step_config]} | ||
- include ::designate::backend::bind9 | ||
config_image: {get_param: ContainerDesignateConfigImage} | ||
volumes: | ||
- /var/named-persistent:/var/named-persistent:z | ||
kolla_config: | ||
/var/lib/kolla/config_files/designate_backend_bind9.json: | ||
command: /usr/sbin/named -u named -c /etc/named.conf -f -g | ||
config_files: | ||
- source: "/var/lib/kolla/config_files/src/*" | ||
dest: "/" | ||
merge: true | ||
preserve_properties: true | ||
- source: "/var/named/*" | ||
dest: "/var/named-persistent/" | ||
merge: true | ||
preserve_properties: true | ||
permissions: | ||
- path: /var/log/designate | ||
owner: designate:designate | ||
recurse: true | ||
- path: /var/named-persistent | ||
owner: root:named | ||
perm: '0770' | ||
- path: /etc/rndc.key | ||
owner: root:named | ||
perm: '0640' | ||
docker_config: | ||
step_4: | ||
designate_backend_bind9: | ||
image: {get_param: ContainerDesignateBackendBIND9Image} | ||
net: host | ||
privileged: true | ||
restart: always | ||
volumes: | ||
list_concat: | ||
- {get_attr: [ContainersCommon, volumes]} | ||
- | ||
- /run:/run | ||
- /var/lib/kolla/config_files/designate_backend_bind9.json:/var/lib/kolla/config_files/config.json:ro | ||
- /var/lib/config-data/puppet-generated/designate:/var/lib/kolla/config_files/src:ro | ||
- /var/log/containers/designate:/var/log/designate:z | ||
- /var/named-persistent:/var/named-persistent:z | ||
environment: | ||
KOLLA_CONFIG_STRATEGY: COPY_ALWAYS | ||
host_prep_tasks: | ||
- name: create persistent named directory | ||
file: | ||
path: /var/named-persistent | ||
state: directory | ||
setype: container_file_t | ||
mode: '0750' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.