-
Notifications
You must be signed in to change notification settings - Fork 24.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support major.minor
tag in docker images
#110014
Comments
Pinging @elastic/es-delivery (Team:Delivery) |
Currently we don't do any "dynamic" tagging of our images. @elastic/release-eng I'm sure this topic has come up before, but probably in the context of |
Historically, our policy has always been to consider released artifacts as immutable. This means that when you download a file from our website or pull an image with a specific tag from our registry, you should always receive the exact same artifact. This approach is crucial for several reasons:
We are always open to discussions and potential changes if they make sense after considering the perspectives of all impacted teams. |
Since there are no plans to use such a tagging scheme I'm going to close this issue. |
I agree that customers should be able to specify an immutable version of the artifact. And that is possible by fully qualifying the image tag name But there are a set of customers who want to automatically get security patches without having to change their source code every time a security patch comes out. elasticsearch is doing just that with its dependency on elasticsearch/distribution/docker/src/docker/iron_bank/hardening_manifest.yaml Lines 14 to 17 in 1be0f2b
Here you are saying "give me the latest 9.3 version" and new versions of 9.3 have been released since #102721 was merged to update to 9.3. I don't know the best practices around docker tag management, I'm sure everyone has their own opinions. But looking at other well-known docker containers, having tags that float across patches seems to be the norm. |
Description
In .NET Aspire We try to use
major.minor
image versions if possible, so we automatically get patch updates without needing to change our code. Right now Elasticsearch image doesn't support this image format.Is possible to support this image tag format?
dotnet/aspire#4430
The text was updated successfully, but these errors were encountered: