Skip to content

Commit 9b85cff

Browse files
authored
Merge pull request #546 from stackhpc/jph/designate
Enable Designate and configure FQDNs for APIs
2 parents 68026c4 + 851a5c6 commit 9b85cff

File tree

3 files changed

+17
-2
lines changed

3 files changed

+17
-2
lines changed

etc/kayobe/environments/ci-multinode/kolla.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ kolla_enable_neutron_provider_networks: true
55
kolla_enable_ovn: true
66
kolla_enable_octavia: true
77
kolla_enable_magnum: true
8+
kolla_enable_designate: true
9+
kolla_enable_redis: true
810
kolla_enable_barbican: true
911

1012
# The multinode environment supports Backend and internal TLS , but it must be
@@ -16,3 +18,9 @@ kolla_enable_barbican: true
1618
# The multinode environment supports Manila but it is not enabled by default.
1719
# kolla_enable_manila: true
1820
# kolla_enable_manila_backend_cephfs_native: true
21+
22+
kolla_internal_vip_address: "192.168.37.2"
23+
kolla_internal_fqdn: "internal.infra.mos.{{ root_domain | default('example.com') }}"
24+
25+
kolla_external_vip_address: "192.168.39.2"
26+
kolla_external_fqdn: "public.infra.mos.{{ root_domain | default('example.com') }}"

etc/kayobe/environments/ci-multinode/kolla/globals.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,3 +25,12 @@ octavia_provider_agents: "ovn"
2525

2626
# Manila CephFS configuration
2727
manila_cephfs_filesystem_name: manila-cephfs
28+
29+
# Designate configuration
30+
designate_ns_record:
31+
- "ns1.mos.{{ root_domain | default('example.com') }}"
32+
- "ns2.mos.{{ root_domain | default('example.com') }}"
33+
- "ns3.mos.{{ root_domain | default('example.com') }}"
34+
designate_backend: "bind9"
35+
designate_recursion: "yes"
36+
designate_forwarders_addresses: "1.1.1.1; 8.8.8.8"

etc/kayobe/environments/ci-multinode/networks.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,6 @@ internal_cidr: 192.168.37.0/24
7676
internal_mtu: "{{ ansible_facts.default_ipv4.mtu - 50 }}"
7777
internal_allocation_pool_start: 192.168.37.3
7878
internal_allocation_pool_end: 192.168.37.254
79-
internal_vip_address: 192.168.37.2
8079
internal_vlan: 101
8180

8281
# External network
@@ -91,7 +90,6 @@ public_cidr: 192.168.39.0/24
9190
public_mtu: "{{ ansible_facts.default_ipv4.mtu - 50 }}"
9291
public_allocation_pool_start: 192.168.39.3
9392
public_allocation_pool_end: 192.168.39.254
94-
public_vip_address: 192.168.39.2
9593
public_vlan: 103
9694

9795
# Tunnel network

0 commit comments

Comments
 (0)