Closed MarcelLeon closed 3 years ago
minikube
and kubectl port-forward
are both meant to be used for local development and experimentation. To expose Ververica Platform to the outside, I suggest, to use an Ingress (or possible a Service of type NodePort). If you would like to stick to minikube for the time being, it might then be easier to use the "None" driver [1], which runs Kubernetes directly on your machine instead of a VM or docker.
minikube
andkubectl port-forward
are both meant to be used for local development and experimentation. To expose Ververica Platform to the outside, I suggest, to use an Ingress (or possible a Service of type NodePort). If you would like to stick to minikube for the time being, it might then be easier to use the "None" driver [1], which runs Kubernetes directly on your machine instead of a VM or docker.
Thanks for your reply, I try to execute
kubectl port-forward service/vvp-ververica-platform --address 192.168.101.230 8080:80
it works now... this "sql-platform" is so cool!
Glad it works now.
minikube
andkubectl port-forward
are both meant to be used for local development and experimentation. To expose Ververica Platform to the outside, I suggest, to use an Ingress (or possible a Service of type NodePort). If you would like to stick to minikube for the time being, it might then be easier to use the "None" driver [1], which runs Kubernetes directly on your machine instead of a VM or docker. [1] https://minikube.sigs.k8s.io/docs/drivers/none/Thanks for your reply, I try to execute
kubectl port-forward service/vvp-ververica-platform --address 192.168.101.230 8080:80
it works now... this "sql-platform" is so cool!
For note this, I had written a Chinese installed reference. https://marcelleon.github.io/2021/02/26/vvp-install-note/
I follow the document step-by-step( minikube helm vvp etc. ), https://docs.ververica.com/getting_started/installation.html#setting-up-the-playground then I start vvp, and it's work. like...
the port status show:
but it couldn't visit from local area network. I try to curl command locally
how can I resolve it? thx