cloudstack icon indicating copy to clipboard operation
cloudstack copied to clipboard

Docker Image has wrong tag

Open ianc769 opened this issue 7 months ago • 0 comments

problem

There is a version label mismatch in the Docker image simulator-4.19.3.0. The image name indicates version 4.19.3.0, but when inspecting the image labels with docker inspect simulator-4.19.3.0 | jq -r '.[0].Config.Labels', the Version field shows 4.18.3.0 instead of the expected 4.19.3.0.

┌[user@work] [/dev/pts/2] [maint/update-testing-20250611] 
└[~/go/src/github.com/apache/cloudstack-terraform-provider]> docker inspect simulator-4.19.3.0 | jq -r '.[0].Config.Labels     
 |> '
{
  "Author": "Apache CloudStack <[email protected]>",
  "License": "ApacheV2",
  "Vendor": "Apache.org",
  "Version": "4.18.3.0",
  "org.opencontainers.image.ref.name": "ubuntu",
  "org.opencontainers.image.version": "22.04"
}

This discrepancy creates confusion about the actual software version contained in the image. The Docker image build process should be updated to ensure the Version label correctly reflects 4.19.3.0 to match the image name.

versions

No response

The steps to reproduce the bug

No response

What to do about it?

No response

ianc769 avatar Jun 11 '25 21:06 ianc769