Skip to content

Commit 674b2a7

Browse files
committed
Merge remote-tracking branch 'remotes/upstream/stable/wallaby' into wallaby_import_26012022
2 parents b42bc17 + 04570e2 commit 674b2a7

File tree

184 files changed

+470
-237
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

184 files changed

+470
-237
lines changed

ansible/group_vars/all.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -438,6 +438,7 @@ outward_rabbitmq_port: "5674"
438438
outward_rabbitmq_management_port: "15674"
439439
outward_rabbitmq_cluster_port: "25674"
440440
outward_rabbitmq_epmd_port: "4371"
441+
outward_rabbitmq_prometheus_port: "15694"
441442

442443
ovsdb_port: "6640"
443444

@@ -454,7 +455,7 @@ prometheus_node_exporter_port: "9100"
454455
prometheus_mysqld_exporter_port: "9104"
455456
prometheus_haproxy_exporter_port: "9101"
456457
prometheus_memcached_exporter_port: "9150"
457-
prometheus_rabbitmq_exporter_port: "15692"
458+
prometheus_rabbitmq_exporter_port: "{{ rabbitmq_prometheus_port }}"
458459
# Default cadvisor port of 8080 already in use
459460
prometheus_cadvisor_port: "18080"
460461
prometheus_fluentd_integration_port: "24231"
@@ -476,6 +477,7 @@ rabbitmq_port: "{{ '5671' if rabbitmq_enable_tls | bool else '5672' }}"
476477
rabbitmq_management_port: "15672"
477478
rabbitmq_cluster_port: "25672"
478479
rabbitmq_epmd_port: "4369"
480+
rabbitmq_prometheus_port: "15692"
479481

480482
redis_port: "6379"
481483
redis_sentinel_port: "26379"
@@ -525,6 +527,7 @@ zookeeper_quorum_port: "3888"
525527

526528
zun_api_port: "9517"
527529
zun_wsproxy_port: "6784"
530+
zun_wsproxy_protocol: "{{ 'wss' if kolla_enable_tls_external | bool else 'ws' }}"
528531
zun_cni_daemon_port: "9036"
529532

530533
vitrage_api_port: "8999"
@@ -1047,6 +1050,8 @@ enable_keystone_horizon_policy_file: "{{ enable_keystone }}"
10471050
enable_neutron_horizon_policy_file: "{{ enable_neutron }}"
10481051
enable_nova_horizon_policy_file: "{{ enable_nova }}"
10491052

1053+
horizon_enable_tls_backend: "{{ kolla_enable_tls_backend }}"
1054+
10501055
horizon_internal_endpoint: "{{ internal_protocol }}://{{ kolla_internal_fqdn | put_address_in_context('url') }}:{{ horizon_tls_port if kolla_enable_tls_internal | bool else horizon_port }}"
10511056
horizon_public_endpoint: "{{ public_protocol }}://{{ kolla_external_fqdn | put_address_in_context('url') }}:{{ horizon_tls_port if kolla_enable_tls_external | bool else horizon_port }}"
10521057

ansible/roles/aodh/defaults/main.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
---
2-
project_name: "aodh"
3-
42
aodh_services:
53
aodh-api:
64
container_name: aodh_api

ansible/roles/aodh/templates/wsgi-aodh.conf.j2

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,5 @@ LogLevel info
3434
WSGIApplicationGroup %{GLOBAL}
3535
WSGIDaemonProcess aodh group=aodh processes={{ openstack_service_workers }} threads=1 user=aodh
3636
WSGIProcessGroup aodh
37-
{% if aodh_install_type == 'binary' and kolla_base_distro in ['debian', 'ubuntu'] %}
38-
WSGIScriptAlias / "{{ binary_path }}/python3-aodh-api"
39-
{% else %}
4037
WSGIScriptAlias / "{{ binary_path }}/aodh-api"
41-
{% endif %}
4238
</VirtualHost>

ansible/roles/aodh/vars/main.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
---
2+
project_name: "aodh"

ansible/roles/barbican/defaults/main.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
---
2-
project_name: "barbican"
3-
42
barbican_services:
53
barbican-api:
64
container_name: barbican_api

ansible/roles/barbican/templates/barbican.conf.j2

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ bind_host = {{ api_interface_address }}
1010
host_href = {{ barbican_public_endpoint }}
1111

1212
backlog = 4096
13-
max_allowed_secret_in_bytes = 10000
1413
max_allowed_request_size_in_bytes = 1000000
1514

1615
db_auto_create = False
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
---
2+
project_name: "barbican"

ansible/roles/baremetal/tasks/pre-install.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,15 @@
4141
- inventory_hostname not in groups['bifrost'] or
4242
hostvars[inventory_hostname]['api_interface'] | replace('-', '_') in hostvars[inventory_hostname].ansible_facts
4343

44+
- name: Ensure unprivileged users can use ping
45+
become: true
46+
sysctl:
47+
name: net.ipv4.ping_group_range
48+
value: '0 2147483647'
49+
state: present
50+
sysctl_file: "{{ kolla_sysctl_conf_path }}"
51+
when: ansible_facts.os_family == 'RedHat'
52+
4453
# NOTE(osmanlicilegi): The distribution might come with cloud-init installed, and manage_etc_hosts
4554
# configuration enabled. If so, it will override the file /etc/hosts from cloud-init templates at
4655
# every boot, which will break RabbitMQ. To prevent this happens, first we check whether cloud-init

ansible/roles/bifrost/defaults/main.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
---
2-
project_name: "bifrost"
3-
42
####################
53
# Docker
64
####################
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
---
2+
project_name: "bifrost"

0 commit comments

Comments
 (0)