Skip to content

Commit 4450877

Browse files
authored
Merge pull request #374 from stackhpc/xena-wallaby-merge
xena: wallaby merge
2 parents ebc3643 + 4364e6c commit 4450877

File tree

7 files changed

+36
-5
lines changed

7 files changed

+36
-5
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: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,25 @@ 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+
cinder_tag: xena-20230206T165215
13+
etcd_tag: xena-20230201T095253
14+
glance_tag: xena-20230206T165215
15+
glance_tls_proxy_tag: "{% raw %}{{ haproxy_tag | default(openstack_tag) }}{% endraw %}"
1216
magnum_tag: xena-20230131T144233
13-
nova_tag: xena-20230120T115956
17+
neutron_tls_proxy_tag: "{% raw %}{{ haproxy_tag | default(openstack_tag) }}{% endraw %}"
18+
nova_tag: xena-20230206T165215
1419
rabbitmq_tag: xena-20230105T141714
1520
{% else %}
1621
bifrost_tag: xena-20221213T224057
22+
cinder_tag: xena-20230206T165220
23+
etcd_tag: xena-20230201T131415
24+
glance_tag: xena-20230206T165220
25+
glance_tls_proxy_tag: "{% raw %}{{ haproxy_tag | default(openstack_tag) }}{% endraw %}"
1726
kolla_toolbox_tag: xena-20230104T145414
1827
magnum_tag: xena-20230131T151601
1928
neutron_tag: xena-20230104T145414
20-
neutron_tls_proxy_tag: "{% raw %}{{ openstack_tag }}{% endraw %}"
21-
nova_tag: xena-20230104T145414
29+
neutron_tls_proxy_tag: "{% raw %}{{ haproxy_tag | default(openstack_tag) }}{% endraw %}"
30+
nova_tag: xena-20230206T165220
2231
octavia_tag: xena-20230104T145414
2332
openvswitch_tag: xena-20230104T145414
2433
ovn_tag: xena-20230104T145414

etc/kayobe/pulp.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -498,6 +498,7 @@ stackhpc_pulp_images_kolla:
498498
- dnsmasq
499499
- elasticsearch
500500
- elasticsearch-curator
501+
- etcd
501502
- fluentd
502503
- glance-api
503504
- 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)