Closed scottkurz closed 2 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.
odo url update
Handled via: https://github.com/openshift/odo/issues/4493
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.