Skip to content

Commit

Permalink
Drop "-with" prefix from remaining accelerator image names (#1309)
Browse files Browse the repository at this point in the history
* Fix image name in definition

Dropped with on a recent PR for conciseness but didn't drop it from image definitions

* Drop old image name from regex in iso path

* Fix prefix in nvidia latest
  • Loading branch information
jjerger authored Nov 18, 2024
1 parent 661321a commit 6535a99
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion concourse/pipelines/linux-image-build.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ local elimgbuildjob = imgbuildjob {

workflow_dir: 'enterprise_linux',
sbom_util_secret_name:: 'sbom-util-secret',
isopath:: std.strReplace(std.strReplace(std.strReplace(tl.image, '-byos', ''), '-sap', ''), '-with-nvidia-latest', ''),
isopath:: std.strReplace(std.strReplace(std.strReplace(tl.image, '-byos', ''), '-sap', ''), '-nvidia-latest', ''),

// Add tasks to obtain ISO location and sbom util source
// Store those in .:iso-secret and .:sbom-util-secret
Expand Down

0 comments on commit 6535a99

Please sign in to comment.