File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -243,7 +243,7 @@ jobs:
243
243
-e os_distribution="rocky" \
244
244
-e os_release="9" \
245
245
-e stackhpc_overcloud_dib_name=overcloud-rocky-9 \
246
- -e overcloud_dib_architecture=${{ env.overcloud_dib_architecture }}
246
+ -e overcloud_dib_architecture=${{ inputs.cpu-platform-architecture == 'x86_64' && 'amd64' || 'aarch64' }}
247
247
env :
248
248
KAYOBE_VAULT_PASSWORD : ${{ secrets.KAYOBE_VAULT_PASSWORD }}
249
249
if : inputs.rocky9
@@ -314,7 +314,7 @@ jobs:
314
314
-e os_distribution="ubuntu" \
315
315
-e os_release="noble" \
316
316
-e stackhpc_overcloud_dib_name=overcloud-ubuntu-noble \
317
- -e overcloud_dib_architecture=${{ env.overcloud_dib_architecture }}
317
+ -e overcloud_dib_architecture=${{ inputs.cpu-platform-architecture == 'x86_64' && 'amd64' || 'aarch64' }}
318
318
env :
319
319
KAYOBE_VAULT_PASSWORD : ${{ secrets.KAYOBE_VAULT_PASSWORD }}
320
320
if : inputs.ubuntu-noble
Original file line number Diff line number Diff line change 42
42
disk_format : qcow2
43
43
state : present
44
44
filename : " {{ local_image_path }}"
45
+ properties :
46
+ hw_architecture : " {{ 'aarch64' if cpu_platform == 'arm64' else 'x86_64' }}"
45
47
46
48
always :
47
49
- name : Remove clouds.yaml
You can’t perform that action at this time.
0 commit comments