无法在 Azure Kubernetes 中获取 IBM websphere MQ 的仪表板

Unable to get the dashboard of IBM websphere MQ in Azure Kubernetes

我们正在尝试使用 Azure 文件系统启动有状态 MQ 管理器,作为为 Azure Kubernetes 集群中的数据安装的持久存储。这是我们遵循的 link。我们将服务类型公开为 LoadBalancer,如下面的命令所示。

helm install stable/ibm-mqadvanced-server-dev --version 3.0.1 --set service.type=LoadBalancer,security.initVolumeAsRoot=true,license=accept

默认情况下,它采用默认存储 class 作为 Azure 磁盘。这里我想使用Azure文件系统作为持久化storage.so,我应该如何传递我的Azure文件系统名称?另一件事是,我们可以 运行 pod 在没有任何重启的情况下成功,但无法访问它的 web 界面。所以,我们不知道访问该服务时可能出现的确切问题在哪里?

Github 您链接的回购在 configuration 下特别提到了 dataPVC.storageClassName。这用于定义存储 class,如果你没有 Azure 文件的存储 class(我认为它默认不存在),你需要创建它然后引用它,所以它会用那个 class.

如何设置:here