OpenLiberty / devfile-stack

Application stack for Open Liberty
Apache License 2.0
10 stars 8 forks source link

Deal with noise in minikube resulting in pre-populated url/endpoint for OpenShift..maybe need odo url update? #123

Closed scottkurz closed 2 years ago

scottkurz commented 3 years ago

If you follow the instructions: https://odo.dev/docs/deploying-a-devfile-using-odo/#deploying-an-open-liberty-application-to-an-openshift--kubernetes-cluster

odo url create --host $(minikube ip).nip.io

you'll see some noise about the 'ep1' endpoint. But there's not a way to "update" that endpoint.

Further.. if you do

odo delete ep1; odo url create --host $(minikube ip).nip.io

you'll get an error complaining there's no port (9080) defined..so you'd have to do

odo delete ep1; odo url create --host $(minikube ip).nip.io --port 9080

I think we should maybe work with the odo team to provide an odo url update ? and consider updating that deployment doc.

scottkurz commented 3 years ago

Handled via: https://github.com/openshift/odo/issues/4493