Skip to content

Commit 225219d

Browse files
committed
Test if upload as raw from volume is quicker
1 parent 6bf1dbb commit 225219d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/extra.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ jobs:
121121
- name: Make image usable for further builds
122122
run: |
123123
. venv/bin/activate
124-
openstack image unset --property signature_verified "${{ steps.manifest.outputs.image-id }}"
124+
openstack image unset --property signature_verified "${{ steps.manifest.outputs.image-id }}" || true
125125
126126
- name: Delete image for automatically-run workflows
127127
run: |

.github/workflows/fatimage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ jobs:
102102
- name: Make image usable for further builds
103103
run: |
104104
. venv/bin/activate
105-
openstack image unset --property signature_verified "${{ steps.manifest.outputs.image-id }}"
105+
openstack image unset --property signature_verified "${{ steps.manifest.outputs.image-id }}" || true
106106
107107
- name: Upload manifest artifact
108108
uses: actions/upload-artifact@v4

packer/openstack.pkr.hcl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ source "openstack" "openhpc" {
178178
ssh_bastion_private_key_file = var.ssh_bastion_private_key_file
179179

180180
# Output image:
181-
image_disk_format = "qcow2"
181+
image_disk_format = "raw"
182182
image_visibility = var.image_visibility
183183

184184
}

0 commit comments

Comments
 (0)