-
Notifications
You must be signed in to change notification settings - Fork 2.8k
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
Use UBI9 based Quarkus micro image #46231
Use UBI9 based Quarkus micro image #46231
Conversation
ad21fec
to
e286b67
Compare
This comment has been minimized.
This comment has been minimized.
🙈 The PR is closed and the preview is expired. |
core/deployment/src/main/java/io/quarkus/deployment/images/ContainerImages.java
Outdated
Show resolved
Hide resolved
This comment has been minimized.
This comment has been minimized.
e286b67
to
02a6143
Compare
This comment has been minimized.
This comment has been minimized.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM but let's wait for Clément's approval.
This comment has been minimized.
This comment has been minimized.
core/deployment/src/main/java/io/quarkus/deployment/images/ContainerImages.java
Show resolved
Hide resolved
...loyment/src/main/java/io/quarkus/container/image/jib/deployment/ContainerImageJibConfig.java
Outdated
Show resolved
Hide resolved
02a6143
to
5ac3a00
Compare
Status for workflow
|
Definitely an overlook from my side! Thanks! |
Status for workflow
|
I have Kuberentes application that is failing over:
I believe the reason for this is combination of default
quay.io/quarkus/ubi9-quarkus-mandrel-builder-image:jdk-21
and ubi8 basedquay.io/quarkus/quarkus-micro-image
.This commit f95cf8c changed description of the
quarkus.jib.base-native-image
to sayquay.io/quarkus/ubi9-quarkus-micro-image:2.0
is default, but didn't change default.https://github.com/quarkusio/quarkus/wiki/Migration-Guide-3.19#ubi-9 says that UBI9 based micro image is default, I believe this will solve my issues. I experienced many similar issues when I combined UBI9 and UBI8. Thanks.
P.S. I have also mentioned that
ubi-quarkus-native-binary-s2i
didn't change toubi9-quarkus-native-binary-s2i
, but the difference is that it is not in the migration guide or in the configuration property javadocio.quarkus.container.image.openshift.deployment.ContainerImageOpenshiftConfig#baseNativeImage
and I always override it didn't hit issues yet. I wonder - is it intentional and why?