Skip to content

Commit edddd91

Browse files
authored
Merge pull request #837 from stackhpc/stackhpc/zed
sync 2023.1 from zed
2 parents 526261a + 0f5f21a commit edddd91

File tree

3 files changed

+17
-1
lines changed

3 files changed

+17
-1
lines changed

doc/source/operations/upgrading.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -436,7 +436,7 @@ Compare the old & new configuration:
436436

437437
.. code-block:: console
438438
439-
diff -ru ~/kolla-diff-{old,new} > ~/kolla-diff.diff
439+
diff -ru ~/kolla-diff/{old,new} > ~/kolla-diff.diff
440440
less ~/kolla-diff.diff
441441
442442
Upgrading the Seed Hypervisor

etc/kayobe/kolla/kolla-build.conf

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,11 @@
11
[DEFAULT]
2+
{# Packages in the latest upstream Ubuntu base image can be ahead of our package repo #}
3+
{# snapshots, so pin to a specific tag. #}
4+
{# This tag should be updated when Ubuntu package repo snapshot versions are changed. #}
5+
{% if kolla_base_distro == 'ubuntu' %}
6+
base_tag = jammy-20231004
7+
{# Similarly pinning to Rocky 9 minor version used in our repos #}
8+
{% elif kolla_base_distro == 'rocky' %}
9+
base_tag = 9.{{ stackhpc_pulp_repo_rocky_9_minor_version }}
10+
{% endif %}
211
build_args = {{ kolla_build_args.items() | map('join', ':') | join(',') }}
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
fixes:
2+
- |
3+
Pin the OCI image tag used for the base-image of Kolla image
4+
builds. This prevents packages in the image with
5+
the latest tag getting in front of StackHPC release-train
6+
package repositories. Ubuntu tag should be bumped when new
7+
packages are available in StackHPC release-train.

0 commit comments

Comments
 (0)