jenkinsci/docker

images are all lts - no weekly images

PiersRBME opened this issue · 7 comments

Looks like what I understand to be intended latest weekly images are actually only the latest LTS version.

For example tag alpine includes docker command:
ARG JENKINS_URL=https://repo.jenkins-ci.org/public/org/jenkins-ci/main/jenkins-war/2.375.3/jenkins-war-2.375.3.war

I think it may be related to this line of publish.sh assuming that the output of get-latest-versions() is different to what it now is, where the LTS versions are last in the list.

That is correct, thanks for reporting and pointing the mistake!

Now that #1564 fixed the root cause, I feel like we should rollback b9e129d and #1558

@PiersRBME On short time, you can still pin your version to the weekly version (and update it): it works very well and ensure no unexpected core changes. You can find an exemple at https://github.com/jenkins-infra/docker-jenkins-weekly

Thanks for the tip! Not a big rush this side, more of a head-scratcher for a short time :)

more of a head-scratcher for a short time :)

Ah ah I feel you :D

Fix applied in #1578. Thanks @PiersRBME ! It should be "applied" for the weekly 2.392 (worst case ETA).

The release 2.392 was published successfuly today.

The tag latest is now pointing to the same digest as the 2.392:

$ docker pull jenkins/jenkins:latest   
latest: Pulling from jenkins/jenkins
Digest: sha256:5f74addba6c8e05b008f5f06cd0f47d45d483b43352c465a59a8dad98e6f9d63
Status: Downloaded newer image for jenkins/jenkins:latest
docker.io/jenkins/jenkins:latest
$ docker pull jenkins/jenkins:2.392 
2.392: Pulling from jenkins/jenkins
Digest: sha256:5f74addba6c8e05b008f5f06cd0f47d45d483b43352c465a59a8dad98e6f9d63
Status: Image is up to date for jenkins/jenkins:2.392
docker.io/jenkins/jenkins:2.392

Thanks again for catching and reporting properly, sorry for the inconvenience!

It works now for me, thanks a lot for the fix. 🤗