Skip to content

Commit 039ed6d

Browse files
committed
jobs/build-node-image: update s3 stream directory
Append "rhel-" to the `rhel_stream` variable to get the correct s3 stream directory for the `cosa buildfetch` command.
1 parent f9e562e commit 039ed6d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jobs/build-node-image.Jenkinsfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ lock(resource: "build-node-image") {
157157
stage("Run Tests") {
158158
withCredentials([file(credentialsId: 'oscontainer-push-registry-secret', variable: 'REGISTRY_AUTH_FILE')]) {
159159
def openshift_stream = params.RELEASE.split("-")[0]
160-
def rhel_stream = params.RELEASE.split("-")[1]
160+
def rhel_stream = "rhel-" + params.RELEASE.split("-")[1]
161161

162162
parallel basearches.collectEntries { arch ->
163163
[arch, {

0 commit comments

Comments
 (0)