You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 18, 2023. It is now read-only.
Currently, we only let the quarkus-openshift extension generate the YAML resources. We then delegate to oc start-build --from-dir=target --follow for building the image and oc apply -f target/kubernetes/openshift.yml for deploying the application.
This is fine and needs to be tested. But we also need to test -Dquarkus.container-image.build for building the image and -Dquarkus.kubernetes.deploy for deploying the application.
The text was updated successfully, but these errors were encountered:
Test (and if it works, programmatic support) for S2I build - something along the lines of oc new-app openjdk-11-rhel7 https://github.com/quarkusio/quarkus-quickstarts.git --context-dir=getting-started --name=getting-started. Basically letting OpenShift build the app through Maven from a repo.
Test (and if it works, programmatic support) for quarkus-openshift extension. That's described in the issue description.
quarkus-workshops. I'm currently deconstructing this, since it's a bit of a hard nut to crack. What the workshop tells user to do is to build the native image app, build a docker image with docker build with that app's native image, then push the image somewhere and use it in pre-defined OpenShift descriptor.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Currently, we only let the
quarkus-openshift
extension generate the YAML resources. We then delegate tooc start-build --from-dir=target --follow
for building the image andoc apply -f target/kubernetes/openshift.yml
for deploying the application.This is fine and needs to be tested. But we also need to test
-Dquarkus.container-image.build
for building the image and-Dquarkus.kubernetes.deploy
for deploying the application.The text was updated successfully, but these errors were encountered: