Skip to content

Commit 3c2efb1

Browse files
authored
Merge pull request #185 from openstack/stable/victoria
Merge upstream stable/victoria
2 parents 401ac06 + 17c267e commit 3c2efb1

File tree

171 files changed

+420
-194
lines changed

Some content is hidden

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

171 files changed

+420
-194
lines changed

ansible/group_vars/all.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -434,6 +434,7 @@ outward_rabbitmq_port: "5674"
434434
outward_rabbitmq_management_port: "15674"
435435
outward_rabbitmq_cluster_port: "25674"
436436
outward_rabbitmq_epmd_port: "4371"
437+
outward_rabbitmq_prometheus_port: "15694"
437438

438439
ovsdb_port: "6640"
439440

@@ -450,7 +451,7 @@ prometheus_node_exporter_port: "9100"
450451
prometheus_mysqld_exporter_port: "9104"
451452
prometheus_haproxy_exporter_port: "9101"
452453
prometheus_memcached_exporter_port: "9150"
453-
prometheus_rabbitmq_exporter_port: "15692"
454+
prometheus_rabbitmq_exporter_port: "{{ rabbitmq_prometheus_port }}"
454455
# Default cadvisor port of 8080 already in use
455456
prometheus_cadvisor_port: "18080"
456457

@@ -473,6 +474,7 @@ rabbitmq_port: "{{ '5671' if rabbitmq_enable_tls | bool else '5672' }}"
473474
rabbitmq_management_port: "15672"
474475
rabbitmq_cluster_port: "25672"
475476
rabbitmq_epmd_port: "4369"
477+
rabbitmq_prometheus_port: "15692"
476478

477479
redis_port: "6379"
478480
redis_sentinel_port: "26379"
@@ -1048,6 +1050,8 @@ enable_keystone_horizon_policy_file: "{{ enable_keystone }}"
10481050
enable_neutron_horizon_policy_file: "{{ enable_neutron }}"
10491051
enable_nova_horizon_policy_file: "{{ enable_nova }}"
10501052

1053+
horizon_enable_tls_backend: "{{ kolla_enable_tls_backend }}"
1054+
10511055
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 }}"
10521056

10531057
#################

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
@@ -33,9 +33,5 @@ LogLevel info
3333
WSGIApplicationGroup %{GLOBAL}
3434
WSGIDaemonProcess aodh group=aodh processes={{ openstack_service_workers }} threads=1 user=aodh
3535
WSGIProcessGroup aodh
36-
{% if aodh_install_type == 'binary' and kolla_base_distro in ['debian', 'ubuntu'] %}
37-
WSGIScriptAlias / "{{ binary_path }}/python3-aodh-api"
38-
{% else %}
3936
WSGIScriptAlias / "{{ binary_path }}/aodh-api"
40-
{% endif %}
4137
</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
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/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"

ansible/roles/blazar/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: "blazar"
3-
42
blazar_services:
53
blazar-api:
64
container_name: blazar_api

ansible/roles/blazar/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: "blazar"

0 commit comments

Comments
 (0)