Merge "Allow neutron services to use independent hostnames"
This commit is contained in:
commit
b3f1a71d0b
ansible
group_vars
roles
ironic/templates
manila/templates
neutron
nova-hyperv/templates
nova/templates
@ -274,7 +274,10 @@ mongodb_web_port: "28017"
|
|||||||
|
|
||||||
murano_api_port: "8082"
|
murano_api_port: "8082"
|
||||||
|
|
||||||
|
neutron_internal_fqdn: "{{ kolla_internal_fqdn }}"
|
||||||
|
neutron_external_fqdn: "{{ kolla_external_fqdn }}"
|
||||||
neutron_server_port: "9696"
|
neutron_server_port: "9696"
|
||||||
|
neutron_server_listen_port: "{{ neutron_server_port }}"
|
||||||
|
|
||||||
nova_internal_fqdn: "{{ kolla_internal_fqdn }}"
|
nova_internal_fqdn: "{{ kolla_internal_fqdn }}"
|
||||||
nova_external_fqdn: "{{ kolla_external_fqdn }}"
|
nova_external_fqdn: "{{ kolla_external_fqdn }}"
|
||||||
|
@ -84,7 +84,7 @@ password = {{ ironic_keystone_password }}
|
|||||||
|
|
||||||
{% if enable_neutron | bool %}
|
{% if enable_neutron | bool %}
|
||||||
[neutron]
|
[neutron]
|
||||||
url = {{ internal_protocol }}://{{ kolla_internal_fqdn }}:{{ neutron_server_port }}
|
url = {{ internal_protocol }}://{{ neutron_internal_fqdn }}:{{ neutron_server_port }}
|
||||||
auth_url = {{ admin_protocol }}://{{ kolla_internal_fqdn }}:{{ keystone_admin_port }}
|
auth_url = {{ admin_protocol }}://{{ kolla_internal_fqdn }}:{{ keystone_admin_port }}
|
||||||
auth_type = password
|
auth_type = password
|
||||||
project_domain_id = default
|
project_domain_id = default
|
||||||
|
@ -38,7 +38,7 @@ memcache_secret_key = {{ memcache_secret_key }}
|
|||||||
memcached_servers = {% for host in groups['memcached'] %}{{ hostvars[host]['ansible_' + hostvars[host]['api_interface']]['ipv4']['address'] }}:{{ memcached_port }}{% if not loop.last %},{% endif %}{% endfor %}
|
memcached_servers = {% for host in groups['memcached'] %}{{ hostvars[host]['ansible_' + hostvars[host]['api_interface']]['ipv4']['address'] }}:{{ memcached_port }}{% if not loop.last %},{% endif %}{% endfor %}
|
||||||
|
|
||||||
[neutron]
|
[neutron]
|
||||||
url = {{ internal_protocol }}://{{ kolla_internal_fqdn }}:{{ neutron_server_port }}
|
url = {{ internal_protocol }}://{{ neutron_internal_fqdn }}:{{ neutron_server_port }}
|
||||||
uth_uri = {{ internal_protocol }}://{{ kolla_internal_fqdn }}:{{ keystone_public_port }}
|
uth_uri = {{ internal_protocol }}://{{ kolla_internal_fqdn }}:{{ keystone_public_port }}
|
||||||
auth_url = {{ admin_protocol }}://{{ kolla_internal_fqdn }}:{{ keystone_admin_port }}
|
auth_url = {{ admin_protocol }}://{{ kolla_internal_fqdn }}:{{ keystone_admin_port }}
|
||||||
auth_type = password
|
auth_type = password
|
||||||
|
@ -19,6 +19,7 @@ neutron_services:
|
|||||||
mode: "http"
|
mode: "http"
|
||||||
external: false
|
external: false
|
||||||
port: "{{ neutron_server_port }}"
|
port: "{{ neutron_server_port }}"
|
||||||
|
listen_port: "{{ neutron_server_listen_port }}"
|
||||||
frontend_http_extra:
|
frontend_http_extra:
|
||||||
- "option http-tunnel"
|
- "option http-tunnel"
|
||||||
neutron_server_external:
|
neutron_server_external:
|
||||||
@ -26,6 +27,7 @@ neutron_services:
|
|||||||
mode: "http"
|
mode: "http"
|
||||||
external: true
|
external: true
|
||||||
port: "{{ neutron_server_port }}"
|
port: "{{ neutron_server_port }}"
|
||||||
|
listen_port: "{{ neutron_server_listen_port }}"
|
||||||
neutron-openvswitch-agent:
|
neutron-openvswitch-agent:
|
||||||
container_name: "neutron_openvswitch_agent"
|
container_name: "neutron_openvswitch_agent"
|
||||||
image: "{{ neutron_openvswitch_agent_image_full }}"
|
image: "{{ neutron_openvswitch_agent_image_full }}"
|
||||||
@ -305,9 +307,9 @@ max_l3_agents_per_router: 3
|
|||||||
# valid value is: ["v1", "v2"]
|
# valid value is: ["v1", "v2"]
|
||||||
neutron_fwaas_version: "v1"
|
neutron_fwaas_version: "v1"
|
||||||
|
|
||||||
neutron_admin_endpoint: "{{ admin_protocol }}://{{ kolla_internal_fqdn }}:{{ neutron_server_port }}"
|
neutron_admin_endpoint: "{{ admin_protocol }}://{{ neutron_internal_fqdn }}:{{ neutron_server_port }}"
|
||||||
neutron_internal_endpoint: "{{ internal_protocol }}://{{ kolla_internal_fqdn }}:{{ neutron_server_port }}"
|
neutron_internal_endpoint: "{{ internal_protocol }}://{{ neutron_internal_fqdn }}:{{ neutron_server_port }}"
|
||||||
neutron_public_endpoint: "{{ public_protocol }}://{{ kolla_external_fqdn }}:{{ neutron_server_port }}"
|
neutron_public_endpoint: "{{ public_protocol }}://{{ neutron_external_fqdn }}:{{ neutron_server_port }}"
|
||||||
|
|
||||||
neutron_logging_debug: "{{ openstack_logging_debug }}"
|
neutron_logging_debug: "{{ openstack_logging_debug }}"
|
||||||
|
|
||||||
|
@ -8,7 +8,7 @@
|
|||||||
- name: Checking free port for Neutron Server
|
- name: Checking free port for Neutron Server
|
||||||
wait_for:
|
wait_for:
|
||||||
host: "{{ api_interface_address }}"
|
host: "{{ api_interface_address }}"
|
||||||
port: "{{ neutron_server_port }}"
|
port: "{{ neutron_server_listen_port }}"
|
||||||
connect_timeout: 1
|
connect_timeout: 1
|
||||||
timeout: 1
|
timeout: 1
|
||||||
state: stopped
|
state: stopped
|
||||||
|
@ -9,7 +9,7 @@ log_dir = /var/log/kolla/neutron
|
|||||||
use_stderr = False
|
use_stderr = False
|
||||||
|
|
||||||
bind_host = {{ api_interface_address }}
|
bind_host = {{ api_interface_address }}
|
||||||
bind_port = {{ neutron_server_port }}
|
bind_port = {{ neutron_server_listen_port }}
|
||||||
|
|
||||||
api_paste_config = /usr/share/neutron/api-paste.ini
|
api_paste_config = /usr/share/neutron/api-paste.ini
|
||||||
endpoint_type = internalURL
|
endpoint_type = internalURL
|
||||||
|
@ -48,7 +48,7 @@ enabled = true
|
|||||||
html5_proxy_base_url = {{ public_protocol }}://{{ kolla_internal_vip_address }}:{{ rdp_port }}
|
html5_proxy_base_url = {{ public_protocol }}://{{ kolla_internal_vip_address }}:{{ rdp_port }}
|
||||||
|
|
||||||
[neutron]
|
[neutron]
|
||||||
url = {{ internal_protocol }}://{{ kolla_internal_fqdn }}:{{ neutron_server_port }}
|
url = {{ internal_protocol }}://{{ neutron_internal_fqdn }}:{{ neutron_server_port }}
|
||||||
auth_strategy = keystone
|
auth_strategy = keystone
|
||||||
project_domain_name = default
|
project_domain_name = default
|
||||||
project_name = service
|
project_name = service
|
||||||
|
@ -139,7 +139,7 @@ os_region_name = {{ openstack_region_name }}
|
|||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
[neutron]
|
[neutron]
|
||||||
url = {{ internal_protocol }}://{{ kolla_internal_fqdn }}:{{ neutron_server_port }}
|
url = {{ internal_protocol }}://{{ neutron_internal_fqdn }}:{{ neutron_server_port }}
|
||||||
metadata_proxy_shared_secret = {{ metadata_secret }}
|
metadata_proxy_shared_secret = {{ metadata_secret }}
|
||||||
service_metadata_proxy = true
|
service_metadata_proxy = true
|
||||||
{% if neutron_plugin_agent == 'vmware_nsxv3' %}
|
{% if neutron_plugin_agent == 'vmware_nsxv3' %}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user