Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
943e80a
Remove trailing white space
priteau Jan 20, 2023
4b5e4c6
Merge pull request #348 from stackhpc/wallaby-whitespace
priteau Jan 20, 2023
9b74850
gitignore .vscode directory
Alex-Welsh Jan 24, 2023
9fae5d6
Make pulp timeout variable
Alex-Welsh Jan 16, 2023
607ea82
Merge pull request #337 from stackhpc/bump-pulp-timeout
markgoddard Jan 24, 2023
60da6b6
Merge pull request #350 from stackhpc/gitignore-vscode
markgoddard Jan 24, 2023
d0f4078
Use StackHPC kolla build sources for Wallaby
m-bull Jan 25, 2023
3ff9729
OSSA-2023-002: update cinder, glance & nova images for CentOS & Ubuntu
markgoddard Jan 25, 2023
a6c93b1
Merge pull request #358 from stackhpc/wallaby-OSSA-2023-002
markgoddard Jan 25, 2023
4cb709a
use haproxy_tag for glance_tls_proxy and neutron_tls_proxy
bbezak Jan 27, 2023
fb1b423
Merge pull request #363 from stackhpc/wallaby-tls-proxies
markgoddard Jan 30, 2023
078eecb
Add etcd image
markgoddard Jan 31, 2023
dc7db15
Merge pull request #367 from stackhpc/wallaby-etcd
markgoddard Jan 31, 2023
3694552
Add release note for etcd image
markgoddard Jan 31, 2023
a6dab96
Add container image tags for etcd
markgoddard Jan 31, 2023
a927911
Merge pull request #368 from stackhpc/wallaby-etcd
markgoddard Jan 31, 2023
a5fc1fb
Magnum bump
darmach Jan 31, 2023
d712f0a
Merge pull request #370 from stackhpc/magnum-bump-wallaby
darmach Feb 1, 2023
f35e75d
Merge stackhpc/wallaby into stackhpc/xena
markgoddard Feb 1, 2023
f89768c
Add container image tags for etcd
markgoddard Jan 31, 2023
4364e6c
OSSA-2023-002: update cinder, glance & nova images for CentOS & Ubuntu
priteau Feb 7, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ pip-log.txt
*~
.*.swp
.*sw?
.vscode/*

# Files generated by Ansible
ansible/*.retry
Expand Down
4 changes: 2 additions & 2 deletions etc/kayobe/containers/pulp/post.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
url: "{{ pulp_url }}/pulp/api/v3/status/"
register: pulp_status
until: pulp_status is success
retries: 30
delay: 2
retries: "{{ pulp_timeout_retries | default(30) }}"
delay: "{{ pulp_timeout_delay | default(3) }}"

- name: Set the Pulp admin password
become: true
Expand Down
1 change: 1 addition & 0 deletions etc/kayobe/environments/ci-builder/stackhpc-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ kolla_enable_cinder: true
kolla_enable_cloudkitty: true
kolla_enable_designate: true
kolla_enable_elasticsearch_curator: true
kolla_enable_etcd: true
kolla_enable_grafana: true
kolla_enable_influxdb: true
kolla_enable_ironic: true
Expand Down
12 changes: 12 additions & 0 deletions etc/kayobe/kolla.yml
Original file line number Diff line number Diff line change
Expand Up @@ -120,10 +120,18 @@ kolla_sources:
type: git
location: https://github.com/stackhpc/stackhpc-inspector-plugins.git
reference: 1.3.0
cinder-base:
type: git
location: https://github.com/stackhpc/cinder.git
reference: stackhpc/{{ openstack_release }}
cloudkitty-base:
type: git
location: https://github.com/stackhpc/cloudkitty.git
reference: stackhpc/xena
glance-base:
type: git
location: https://github.com/stackhpc/glance.git
reference: stackhpc/{{ openstack_release }}
horizon-plugin-cloudkitty-dashboard:
type: git
location: https://github.com/stackhpc/cloudkitty-dashboard.git
Expand All @@ -141,6 +149,10 @@ kolla_sources:
type: git
location: https://github.com/stackhpc/networking-generic-switch.git
reference: stackhpc/xena
nova-base:
type: git
location: https://github.com/stackhpc/nova.git
reference: stackhpc/{{ openstack_release }}

###############################################################################
# Kolla image build configuration.
Expand Down
15 changes: 12 additions & 3 deletions etc/kayobe/kolla/globals.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,25 @@ enable_docker_repo: {% raw %}"{{ 'overcloud' not in group_names or ansible_facts

{% if kolla_base_distro == 'centos' %}
bifrost_tag: xena-20221128T101757
cinder_tag: xena-20230206T165215
etcd_tag: xena-20230201T095253
glance_tag: xena-20230206T165215
glance_tls_proxy_tag: "{% raw %}{{ haproxy_tag | default(openstack_tag) }}{% endraw %}"
magnum_tag: xena-20230131T144233
nova_tag: xena-20230120T115956
neutron_tls_proxy_tag: "{% raw %}{{ haproxy_tag | default(openstack_tag) }}{% endraw %}"
nova_tag: xena-20230206T165215
rabbitmq_tag: xena-20230105T141714
{% else %}
bifrost_tag: xena-20221213T224057
cinder_tag: xena-20230206T165220
etcd_tag: xena-20230201T131415
glance_tag: xena-20230206T165220
glance_tls_proxy_tag: "{% raw %}{{ haproxy_tag | default(openstack_tag) }}{% endraw %}"
kolla_toolbox_tag: xena-20230104T145414
magnum_tag: xena-20230131T151601
neutron_tag: xena-20230104T145414
neutron_tls_proxy_tag: "{% raw %}{{ openstack_tag }}{% endraw %}"
nova_tag: xena-20230104T145414
neutron_tls_proxy_tag: "{% raw %}{{ haproxy_tag | default(openstack_tag) }}{% endraw %}"
nova_tag: xena-20230206T165220
octavia_tag: xena-20230104T145414
openvswitch_tag: xena-20230104T145414
ovn_tag: xena-20230104T145414
Expand Down
1 change: 1 addition & 0 deletions etc/kayobe/pulp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -482,6 +482,7 @@ stackhpc_pulp_images_kolla:
- dnsmasq
- elasticsearch
- elasticsearch-curator
- etcd
- fluentd
- glance-api
- grafana
Expand Down
7 changes: 7 additions & 0 deletions releasenotes/notes/etcd-e4927551bf5d020c.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
features:
- |
Adds an ``etcd`` Kolla container image. This can be used for OpenStack
service coordination as a tooz backend, or for batched processing of switch
configuration in Networking Generic Switch (this requires a downstream NGS
patch).