File tree Expand file tree Collapse file tree 7 files changed +28
-3
lines changed Expand file tree Collapse file tree 7 files changed +28
-3
lines changed Original file line number Diff line number Diff line change @@ -28,6 +28,7 @@ pip-log.txt
28
28
* ~
29
29
. * .swp
30
30
. * sw ?
31
+ .vscode /*
31
32
32
33
# Files generated by Ansible
33
34
ansible /* .retry
Original file line number Diff line number Diff line change 4
4
url : " {{ pulp_url }}/pulp/api/v3/status/"
5
5
register : pulp_status
6
6
until : pulp_status is success
7
- retries : 30
8
- delay : 2
7
+ retries : " {{ pulp_timeout_retries | default(30) }} "
8
+ delay : " {{ pulp_timeout_delay | default(3) }} "
9
9
10
10
- name : Set the Pulp admin password
11
11
become : true
Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ kolla_enable_cinder: true
12
12
kolla_enable_cloudkitty : true
13
13
kolla_enable_designate : true
14
14
kolla_enable_elasticsearch_curator : true
15
+ kolla_enable_etcd : true
15
16
kolla_enable_grafana : true
16
17
kolla_enable_influxdb : true
17
18
kolla_enable_ironic : true
Original file line number Diff line number Diff line change @@ -120,10 +120,18 @@ kolla_sources:
120
120
type : git
121
121
location : https://github.com/stackhpc/stackhpc-inspector-plugins.git
122
122
reference : 1.3.0
123
+ cinder-base :
124
+ type : git
125
+ location : https://github.com/stackhpc/cinder.git
126
+ reference : stackhpc/{{ openstack_release }}
123
127
cloudkitty-base :
124
128
type : git
125
129
location : https://github.com/stackhpc/cloudkitty.git
126
130
reference : stackhpc/xena
131
+ glance-base :
132
+ type : git
133
+ location : https://github.com/stackhpc/glance.git
134
+ reference : stackhpc/{{ openstack_release }}
127
135
horizon-plugin-cloudkitty-dashboard :
128
136
type : git
129
137
location : https://github.com/stackhpc/cloudkitty-dashboard.git
@@ -141,6 +149,10 @@ kolla_sources:
141
149
type : git
142
150
location : https://github.com/stackhpc/networking-generic-switch.git
143
151
reference : stackhpc/xena
152
+ nova-base :
153
+ type : git
154
+ location : https://github.com/stackhpc/nova.git
155
+ reference : stackhpc/{{ openstack_release }}
144
156
145
157
# ##############################################################################
146
158
# Kolla image build configuration.
Original file line number Diff line number Diff line change @@ -9,15 +9,18 @@ enable_docker_repo: {% raw %}"{{ 'overcloud' not in group_names or ansible_facts
9
9
10
10
{% if kolla_base_distro == 'centos' %}
11
11
bifrost_tag : xena-20221128T101757
12
+ glance_tls_proxy_tag : " {% raw %}{{ haproxy_tag | default(openstack_tag) }}{% endraw %}"
12
13
magnum_tag : xena-20230131T144233
14
+ neutron_tls_proxy_tag : " {% raw %}{{ haproxy_tag | default(openstack_tag) }}{% endraw %}"
13
15
nova_tag : xena-20230120T115956
14
16
rabbitmq_tag : xena-20230105T141714
15
17
{% else %}
16
18
bifrost_tag : xena-20221213T224057
19
+ glance_tls_proxy_tag : " {% raw %}{{ haproxy_tag | default(openstack_tag) }}{% endraw %}"
17
20
kolla_toolbox_tag : xena-20230104T145414
18
21
magnum_tag : xena-20230131T151601
19
22
neutron_tag : xena-20230104T145414
20
- neutron_tls_proxy_tag : " {% raw %}{{ openstack_tag }}{% endraw %}"
23
+ neutron_tls_proxy_tag : " {% raw %}{{ haproxy_tag | default( openstack_tag) }}{% endraw %}"
21
24
nova_tag : xena-20230104T145414
22
25
octavia_tag : xena-20230104T145414
23
26
openvswitch_tag : xena-20230104T145414
Original file line number Diff line number Diff line change @@ -482,6 +482,7 @@ stackhpc_pulp_images_kolla:
482
482
- dnsmasq
483
483
- elasticsearch
484
484
- elasticsearch-curator
485
+ - etcd
485
486
- fluentd
486
487
- glance-api
487
488
- grafana
Original file line number Diff line number Diff line change
1
+ ---
2
+ features :
3
+ - |
4
+ Adds an ``etcd`` Kolla container image. This can be used for OpenStack
5
+ service coordination as a tooz backend, or for batched processing of switch
6
+ configuration in Networking Generic Switch (this requires a downstream NGS
7
+ patch).
You can’t perform that action at this time.
0 commit comments