Skip to content

Commit 0c44052

Browse files
authored
Merge branch 'stackhpc/yoga' into os-capacity-more-fixes
2 parents 0665743 + 7df0abf commit 0c44052

File tree

4 files changed

+10
-5
lines changed

4 files changed

+10
-5
lines changed

etc/kayobe/environments/ci-aio/automated-setup.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ cat << EOF | sudo tee -a /etc/hosts
66
10.205.3.187 pulp-server pulp-server.internal.sms-cloud
77
EOF
88

9-
if [ sudo vgdisplay | grep -q lvm2 ]; then
9+
if sudo vgdisplay | grep -q lvm2; then
1010
sudo lvextend -L 4G /dev/rootvg/lv_home -r || true
1111
sudo lvextend -L 4G /dev/rootvg/lv_tmp -r || true
1212
fi

etc/kayobe/kolla.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -373,6 +373,10 @@ kolla_build_blocks:
373373
{% endif %}
374374
magnum_base_footer: |
375375
RUN curl https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 | head -n -1 | bash
376+
{% raw %}
377+
{% set magnum_capi_packages = ['git+https://github.com/stackhpc/[email protected]'] %}
378+
RUN {{ macros.install_pip(magnum_capi_packages | customizable("pip_packages")) }}
379+
{% endraw %}
376380
# Dict mapping image customization variable names to their values.
377381
# Each variable takes the form:
378382
# <image name>_<customization>_<operation>

etc/kayobe/kolla/globals.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ enable_docker_repo: "{% raw %}{{ 'overcloud' not in group_names or ansible_facts
99
# kolla_base_distro must be set here to be resolvable on a per-host basis
1010
# This is necessary for os migrations where mixed clouds might be deployed
1111
kolla_base_distro: "{% raw %}{{ 'centos' if ansible_facts.distribution == 'Rocky' and ansible_facts.distribution_major_version == '8' else ansible_facts.distribution | lower }}{% endraw %}"
12-
12+
magnum_tag: yoga-20231002T101716
1313
opensearch_tag: yoga-20230904T121340
1414
octavia_tag: yoga-20230921T074238
1515

@@ -32,8 +32,6 @@ kayobe_image_tags:
3232
rocky: yoga-20230310T170929
3333
kibana:
3434
centos: yoga-20230907T152300
35-
magnum:
36-
rocky: yoga-20230825T142202
3735
neutron:
3836
rocky: yoga-20230728T081242
3937
nova:
@@ -56,7 +54,6 @@ grafana_tag: "{% raw %}{{ kayobe_image_tags['grafana'][kolla_base_distro] | defa
5654
ironic_tag: "{% raw %}{{ kayobe_image_tags['ironic'][kolla_base_distro] | default(openstack_tag) }}{% endraw %}"
5755
ironic_dnsmasq_tag: "{% raw %}{{ kayobe_image_tags['ironic_dnsmasq'][kolla_base_distro] | default(openstack_tag) }}{% endraw %}"
5856
kibana_tag: "{% raw %}{{ kayobe_image_tags['kibana'][kolla_base_distro] | default(openstack_tag) }}{% endraw %}"
59-
magnum_tag: "{% raw %}{{ kayobe_image_tags['magnum'][kolla_base_distro] | default(openstack_tag) }}{% endraw %}"
6057
neutron_tag: "{% raw %}{{ kayobe_image_tags['neutron'][kolla_base_distro] | default(openstack_tag) }}{% endraw %}"
6158
nova_tag: "{% raw %}{{ kayobe_image_tags['nova'][kolla_base_distro] | default(openstack_tag) }}{% endraw %}"
6259
nova_libvirt_tag: "{% raw %}{{ kayobe_image_tags['nova_libvirt'][kolla_base_distro] | default(nova_tag) }}{% endraw %}"
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
---
2+
features:
3+
- |
4+
Adds the new magnum-capi-helm out of tree driver (see here https://github.com/stackhpc/magnum-capi-helm) into release train magnum containers

0 commit comments

Comments
 (0)