Skip to content
This repository has been archived by the owner on Jan 21, 2024. It is now read-only.

fix(updatecli): check preview parent images only for some architectures #437

Merged
merged 2 commits into from
Oct 22, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 16 additions & 5 deletions updatecli/updatecli.d/docker-agent.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,17 +44,17 @@ conditions:
tag: '{{source "lastVersion" }}-alpine-jdk17'
checkJdk21AlpineDockerImage:
kind: dockerimage
name: Check if the container image "jenkins/agent:<lastVersion>-alpine-jdk21-preview" for linux/amd64 is available
name: Check if the container image "jenkins/agent:<lastVersion>-alpine-jdk21" for linux/amd64 is available
disablesourceinput: true
spec:
architectures:
- amd64
- arm64
image: jenkins/agent
tag: '{{source "lastVersion" }}-alpine-jdk21-preview'
tag: '{{source "lastVersion" }}-alpine-jdk21'
checkJdk11DebianDockerImages:
kind: dockerimage
name: Check if the container image "jenkins/agent:<lastVersion>-jdk11" for linux/amd64 is available
name: Check if the container image "jenkins/agent:<lastVersion>-jdk11" for linux/amd64, linux/arm64, linux/arm/v7, s390x and ppc64le is available
disablesourceinput: true
spec:
architectures:
Expand All @@ -67,7 +67,7 @@ conditions:
tag: '{{source "lastVersion" }}-jdk11'
checkJdk17DebianDockerImages:
kind: dockerimage
name: Check if the container image "jenkins/agent:<lastVersion>-jdk17" for linux/amd64 is available
name: Check if the container image "jenkins/agent:<lastVersion>-jdk17" for linux/amd64, linux/arm64 & linux/arm/v7 is available
disablesourceinput: true
spec:
architectures:
Expand All @@ -78,13 +78,24 @@ conditions:
tag: '{{source "lastVersion" }}-jdk17'
checkJdk21DebianDockerImages:
kind: dockerimage
name: Check if the container image "jenkins/agent:<lastVersion>-jdk21-preview" for linux/amd64 is available
name: Check if the container image "jenkins/agent:<lastVersion>-jdk21-preview" for linux/amd64 & linux/arm64 is available
disablesourceinput: true
spec:
architectures:
- amd64
- arm64
image: jenkins/agent
tag: '{{source "lastVersion" }}-jdk21'
checkJdk21DebianPreviewDockerImages:
kind: dockerimage
name: Check if the container image "jenkins/agent:<lastVersion>-jdk21-preview" for ppc64le, linux/arm/v7 and s390x is available
disablesourceinput: true
spec:
architectures:
- ppc64le
- linux/arm/v7
- s390x
image: jenkins/agent
tag: '{{source "lastVersion" }}-jdk21-preview'
checkJdk11WindowsNanoserver1809DockerImage:
kind: dockerimage
Expand Down