Skip to content

Commit 1f42608

Browse files
committed
added Rocky 10 tag updates
1 parent 72e2e53 commit 1f42608

1 file changed

Lines changed: 10 additions & 1 deletion

File tree

.github/workflows/update-overcloud-host-image-tags.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ on:
77
rocky9_tag:
88
description: Overcloud host image tag for Rocky 9
99
type: string
10+
rocky10_tag:
11+
description: Overcloud host image tag for Rocky 10
12+
type: string
1013
ubuntu_noble_tag:
1114
description: Overcloud host image tag for Ubuntu
1215
type: string
@@ -31,6 +34,11 @@ jobs:
3134
sed -i "/stackhpc_rocky_9_overcloud_host_image_version/s/.*/stackhpc_rocky_9_overcloud_host_image_version: ${{ inputs.rocky9_tag }}/" ${{ github.workspace }}/src/kayobe-config/etc/kayobe/pulp-host-image-versions.yml
3235
if: "${{ inputs.rocky9_tag != '' }}"
3336

37+
- name: Update Rocky 10 overcloud host image tag
38+
run: |
39+
sed -i "/stackhpc_rocky_10_overcloud_host_image_version/s/.*/stackhpc_rocky_10_overcloud_host_image_version: ${{ inputs.rocky10_tag }}/" ${{ github.workspace }}/src/kayobe-config/etc/kayobe/pulp-host-image-versions.yml
40+
if: "${{ inputs.rocky10_tag != '' }}"
41+
3442
- name: Update Ubuntu Noble overcloud host image tag
3543
run: |
3644
sed -i "/stackhpc_ubuntu_noble_overcloud_host_image_version/s/.*/stackhpc_ubuntu_noble_overcloud_host_image_version: ${{ inputs.ubuntu_noble_tag }}/" ${{ github.workspace }}/src/kayobe-config/etc/kayobe/pulp-host-image-versions.yml
@@ -43,14 +51,15 @@ jobs:
4351
commit-message: >-
4452
Bump overcloud host image tags
4553
author: stackhpc-ci <22933334+stackhpc-ci@users.noreply.github.com>
46-
branch: bump-overcloud-host-images-${{ inputs.rocky9_tag }}-${{ inputs.ubuntu_noble_tag }}
54+
branch: bump-overcloud-host-images-${{ inputs.rocky9_tag }}-${{ inputs.rocky10_tag }}-${{ inputs.ubuntu_noble_tag }}
4755
delete-branch: true
4856
title: >-
4957
Bump overcloud host image tags
5058
body: |
5159
This PR was created automatically to update the overcloud host image
5260
tags.
5361
Rocky 9: ${{ inputs.rocky9_tag }}
62+
Rocky 10: ${{ inputs.rocky10_tag }}
5463
Ubuntu Noble: ${{ inputs.ubuntu_noble_tag }}
5564
labels: |
5665
automated

0 commit comments

Comments
 (0)