Skip to content
Snippets Groups Projects
Commit 5bd744c8 authored by Zuul's avatar Zuul Committed by Gerrit Code Review
Browse files

Merge "Add 'octavia' in to the list of paths to search for custom configs"

parents adfebda4 43b6276f
No related branches found
No related tags found
No related merge requests found
...@@ -182,6 +182,8 @@ overcloud_container_image_regex_map: ...@@ -182,6 +182,8 @@ overcloud_container_image_regex_map:
enabled: "{{ kolla_enable_neutron_lbaas | bool }}" enabled: "{{ kolla_enable_neutron_lbaas | bool }}"
- regex: nova - regex: nova
enabled: "{{ kolla_enable_nova | bool }}" enabled: "{{ kolla_enable_nova | bool }}"
- regex: octavia
enabled: "{{ kolla_enable_octavia | bool }}"
- regex: openvswitch - regex: openvswitch
enabled: "{{ kolla_enable_neutron | bool }}" enabled: "{{ kolla_enable_neutron | bool }}"
- regex: rabbitmq - regex: rabbitmq
...@@ -360,6 +362,7 @@ kolla_enable_neutron: "yes" ...@@ -360,6 +362,7 @@ kolla_enable_neutron: "yes"
kolla_enable_neutron_lbaas: "no" kolla_enable_neutron_lbaas: "no"
kolla_enable_neutron_provider_networks: "no" kolla_enable_neutron_provider_networks: "no"
kolla_enable_nova: "yes" kolla_enable_nova: "yes"
kolla_enable_octavia: "no"
kolla_enable_osprofiler: "no" kolla_enable_osprofiler: "no"
kolla_enable_prometheus: "no" kolla_enable_prometheus: "no"
kolla_enable_sahara: "no" kolla_enable_sahara: "no"
......
...@@ -365,6 +365,12 @@ kolla_enable_nova: ...@@ -365,6 +365,12 @@ kolla_enable_nova:
# Free form extra configuration to append to nova.conf. # Free form extra configuration to append to nova.conf.
kolla_extra_nova: kolla_extra_nova:
###############################################################################
# Octavia configuration.
# Whether to enable Octavia.
kolla_enable_octavia:
############################################################################### ###############################################################################
# Sahara configuration. # Sahara configuration.
......
...@@ -78,6 +78,7 @@ provisioner: ...@@ -78,6 +78,7 @@ provisioner:
kolla_extra_nova: | kolla_extra_nova: |
[extra-nova.conf] [extra-nova.conf]
foo=bar foo=bar
kolla_enable_octavia: true
kolla_enable_sahara: true kolla_enable_sahara: true
kolla_extra_sahara: | kolla_extra_sahara: |
[extra-sahara.conf] [extra-sahara.conf]
......
...@@ -47,6 +47,7 @@ testinfra_hosts = testinfra.utils.ansible_runner.AnsibleRunner( ...@@ -47,6 +47,7 @@ testinfra_hosts = testinfra.utils.ansible_runner.AnsibleRunner(
'murano', 'murano',
'neutron', 'neutron',
'nova', 'nova',
'octavia',
'sahara', 'sahara',
'storm', 'storm',
'swift', 'swift',
......
...@@ -133,6 +133,11 @@ kolla_openstack_custom_config: ...@@ -133,6 +133,11 @@ kolla_openstack_custom_config:
dest: "{{ kolla_node_custom_config_path }}/nova" dest: "{{ kolla_node_custom_config_path }}/nova"
patterns: "*" patterns: "*"
enabled: "{{ kolla_enable_nova }}" enabled: "{{ kolla_enable_nova }}"
# Octavia.
- src: "{{ kolla_extra_config_path }}/octavia"
dest: "{{ kolla_node_custom_config_path }}/octavia"
patterns: "*"
enabled: "{{ kolla_enable_octavia }}"
# Sahara. # Sahara.
- src: "{{ kolla_extra_config_path }}/sahara" - src: "{{ kolla_extra_config_path }}/sahara"
dest: "{{ kolla_node_custom_config_path }}/sahara" dest: "{{ kolla_node_custom_config_path }}/sahara"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment