-
Notifications
You must be signed in to change notification settings - Fork 2.7k
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
add GraalVM native S2I to openshift-s2i-guide.adoc #1801
Conversation
text is from quarkus-images/centos-quarkus-native-s2i/README.md (just copy/pasted, with .md converted to .adoc)
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.
Made a small comment, the rest looks good.
@@ -39,11 +39,38 @@ oc expose svc/quarkus-quickstart-native | |||
|
|||
# Get the route URL | |||
export URL="http://$(oc get route | grep quarkus-quickstart-native | awk '{print $2}')" | |||
echo $URL |
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.
What's the reason?
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.
@cescoffier just occurred to me that the text in the following line ("Your application is accessible at the printed URL.") does not really match the "code" (because the curl
accesses the app, we don't actually print an URL) - see what I mean? It's of course really minor though, I can remove it again, or leave it, whatever you prefer.
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.
Good point!
because most of that content moved to quarkus.git/docs/src/main/asciidoc/openshift-s2i-guide.adoc in quarkusio/quarkus#1801, and we should not have it dupliate in two places.
* set the exact version for centos * Copy the docker file from the quarkus repository. Add the native-image image Add the distroless image Add the native S2I Also add a graal + maven image * align how dockerfile retrieve graalvm * update to GraalVM 1.0.0-rc14 * document pre-built native-s2i from http://Quay.io in README.md * add WORKDIR to centos-quarkus-native-s2i/Dockerfile suggested on josequaresma/quarkus@5d357f7 by @josequaresma and should "remove the error with application not being able to create quarkus.log" which was brought up on #1 (according to @josequaresma) * simplify centos-quarkus-native-s2i/README.md because most of that content moved to quarkus.git/docs/src/main/asciidoc/openshift-s2i-guide.adoc in quarkusio/quarkus#1801, and we should not have it dupliate in two places. * update to graalvm-1.0.0-rc15 * Changed to use a fixed name for the native application in the container. Fixes #11 * Add a readme explaining how this repo is used * Update GraalVM (RC16) and Maven (3.6.1) versions * Add a note about changing the default branch of the repository in the README * quarkus images, cekit poc Signed-off-by: Filippe Spolti <fspolti@redhat.com> * Add a task goal * Creates a common module installing the base packages * the image providing maven and other tools need is still based on centos * Use ubi-minimal * fix typo * Fix the quarkus user test in the native-image image * Rename modules * Create a gradle module * Change version * Change modules names Avoid overriding the version * Remove the dependency of the push phase * fix image name in the Makefile * Add support for GrallVM 19.0.2 * Use GraalVM 19.0.2 * Update version.
@cescoffier @tqvarnst @siamaksade OK for you?