-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #837 from stackhpc/stackhpc/zed
sync 2023.1 from zed
- Loading branch information
Showing
3 changed files
with
17 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,11 @@ | ||
[DEFAULT] | ||
{# Packages in the latest upstream Ubuntu base image can be ahead of our package repo #} | ||
{# snapshots, so pin to a specific tag. #} | ||
{# This tag should be updated when Ubuntu package repo snapshot versions are changed. #} | ||
{% if kolla_base_distro == 'ubuntu' %} | ||
base_tag = jammy-20231004 | ||
{# Similarly pinning to Rocky 9 minor version used in our repos #} | ||
{% elif kolla_base_distro == 'rocky' %} | ||
base_tag = 9.{{ stackhpc_pulp_repo_rocky_9_minor_version }} | ||
{% endif %} | ||
build_args = {{ kolla_build_args.items() | map('join', ':') | join(',') }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
fixes: | ||
- | | ||
Pin the OCI image tag used for the base-image of Kolla image | ||
builds. This prevents packages in the image with | ||
the latest tag getting in front of StackHPC release-train | ||
package repositories. Ubuntu tag should be bumped when new | ||
packages are available in StackHPC release-train. |