Skip to content

Commit f35e75d

Browse files
committed
Merge stackhpc/wallaby into stackhpc/xena
2 parents 521ae75 + d712f0a commit f35e75d

File tree

7 files changed

+28
-3
lines changed

7 files changed

+28
-3
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ pip-log.txt
2828
*~
2929
.*.swp
3030
.*sw?
31+
.vscode/*
3132

3233
# Files generated by Ansible
3334
ansible/*.retry

etc/kayobe/containers/pulp/post.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
url: "{{ pulp_url }}/pulp/api/v3/status/"
55
register: pulp_status
66
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) }}"
99

1010
- name: Set the Pulp admin password
1111
become: true

etc/kayobe/environments/ci-builder/stackhpc-ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ kolla_enable_cinder: true
1212
kolla_enable_cloudkitty: true
1313
kolla_enable_designate: true
1414
kolla_enable_elasticsearch_curator: true
15+
kolla_enable_etcd: true
1516
kolla_enable_grafana: true
1617
kolla_enable_influxdb: true
1718
kolla_enable_ironic: true

etc/kayobe/kolla.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -120,10 +120,18 @@ kolla_sources:
120120
type: git
121121
location: https://github.com/stackhpc/stackhpc-inspector-plugins.git
122122
reference: 1.3.0
123+
cinder-base:
124+
type: git
125+
location: https://github.com/stackhpc/cinder.git
126+
reference: stackhpc/{{ openstack_release }}
123127
cloudkitty-base:
124128
type: git
125129
location: https://github.com/stackhpc/cloudkitty.git
126130
reference: stackhpc/xena
131+
glance-base:
132+
type: git
133+
location: https://github.com/stackhpc/glance.git
134+
reference: stackhpc/{{ openstack_release }}
127135
horizon-plugin-cloudkitty-dashboard:
128136
type: git
129137
location: https://github.com/stackhpc/cloudkitty-dashboard.git
@@ -141,6 +149,10 @@ kolla_sources:
141149
type: git
142150
location: https://github.com/stackhpc/networking-generic-switch.git
143151
reference: stackhpc/xena
152+
nova-base:
153+
type: git
154+
location: https://github.com/stackhpc/nova.git
155+
reference: stackhpc/{{ openstack_release }}
144156

145157
###############################################################################
146158
# Kolla image build configuration.

etc/kayobe/kolla/globals.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,18 @@ enable_docker_repo: {% raw %}"{{ 'overcloud' not in group_names or ansible_facts
99

1010
{% if kolla_base_distro == 'centos' %}
1111
bifrost_tag: xena-20221128T101757
12+
glance_tls_proxy_tag: "{% raw %}{{ haproxy_tag | default(openstack_tag) }}{% endraw %}"
1213
magnum_tag: xena-20230131T144233
14+
neutron_tls_proxy_tag: "{% raw %}{{ haproxy_tag | default(openstack_tag) }}{% endraw %}"
1315
nova_tag: xena-20230120T115956
1416
rabbitmq_tag: xena-20230105T141714
1517
{% else %}
1618
bifrost_tag: xena-20221213T224057
19+
glance_tls_proxy_tag: "{% raw %}{{ haproxy_tag | default(openstack_tag) }}{% endraw %}"
1720
kolla_toolbox_tag: xena-20230104T145414
1821
magnum_tag: xena-20230131T151601
1922
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 %}"
2124
nova_tag: xena-20230104T145414
2225
octavia_tag: xena-20230104T145414
2326
openvswitch_tag: xena-20230104T145414

etc/kayobe/pulp.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -482,6 +482,7 @@ stackhpc_pulp_images_kolla:
482482
- dnsmasq
483483
- elasticsearch
484484
- elasticsearch-curator
485+
- etcd
485486
- fluentd
486487
- glance-api
487488
- grafana
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
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).

0 commit comments

Comments
 (0)