Home > Back-end >  WSO2 API Manager Kubernetes deployment
WSO2 API Manager Kubernetes deployment

Time:06-10

so I'm using this repo https://github.com/wso2/kubernetes-apim/blob/master/simple/am-single/README.md To deploy WSO2 to an AKS service. I have my pods setup, as well as services and ingresses. The thing is I can't access my services. In the beginning it told me to install the nginx-ingress, I suppose it has something to do with that. If anyone can help me get through this, it would be huge.

CodePudding user response:

I usually hate this kind of "rtm" answer, but it's really not worth doing a duplicata of this great documentation here.

It's worth going through the whole walkthrough even if at some point you figured out what's wrong. You'll learn a lot :)

CodePudding user response:

Yes, you have to create an Ingress Controller which allows you to bring traffic into the K8S cluster. You can refer to this document. Make sure you follow the AKS-specific section from the document. This will provision IAAS provider-specific infrastructure components that are required along with NginX. After Installing the ingress follow the instructions here.

  • Related