Home > Blockchain >  Unable to deploy WSO2 APIM in Minikube Kubernetes cluster
Unable to deploy WSO2 APIM in Minikube Kubernetes cluster

Time:06-10

I'm trying to deploy WSO2 APIM on Kubernetes using the pattern-1 described on the github page enter image description here

Then make sure you have enabled Ingress addon.

minikube addons list

enter image description here

Then make sure Ingress pods are running.

kubectl get po -n ingress-nginx

enter image description here

Next, get the Ingress external IP.

kubectl get ing -A

enter image description here

Get the external IP and the Host from the above and add a entry to the /etc/hosts as shown below.

enter image description here

If everything is in place you should be able to access the Publisher by going to https://am.wso2.com/

  • Related