无法在Minikube Kubernetes群集中部署WSO2 APIM

发布于 2025-02-05 13:43:26 字数 375 浏览 3 评论 0 原文

我正在尝试使用github页面上描述的模式1在kubernetes上部署WSO2 APIM github.com/wso2/kubernetes-apim 。我已经将Minikube IP添加到我的etc/hosts文件中,如下所示:

[minikube ip] am.wso2.com gateway.am.wso2.com

我无法使用此url访问发布者和Defportal: https://am.wso2.com/publisher

是否还有其他需要完成的配置?任何帮助都会很棒:)。提前致谢..

I'm trying to deploy WSO2 APIM on Kubernetes using the pattern-1 described on the github page https://github.com/wso2/kubernetes-apim. I have added my minikube ip to my etc/hosts file as follows:

[minikube ip] am.wso2.com gateway.am.wso2.com

I'm unable to access the Publisher and Devportal using this url:https://am.wso2.com/publisher

Is there any other configuration that needs to be done? Any help would be great:). Thanks in advance..

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

叹倦 2025-02-12 13:43:27

首先,确保所有WSO2豆荚都在运行,并且处于现成状态。

kubectl get po -n <your_namespace> 

这应该输出。

然后确保您已启用了Ingress插件。

minikube addons list

然后确保运行入口吊舱。

kubectl get po -n ingress-nginx

接下来,获取入口外部IP。

kubectl get ing -A

从上面获取外部IP和主机,并在/etc/hosts中添加一个条目,如下所示。

如果一切都已经到位,则应该可以通过转到

First, make sure all your WSO2 pods are running and they're in the ready state.

kubectl get po -n <your_namespace> 

This should output.

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/

世界等同你 2025-02-12 13:43:27

尝试在命令行中运行以下命令。

minikube tunnel

Try to run the below command in the command line.

minikube tunnel
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文