"Kiali secret is missing" 但它肯定存在
"Kiali secret is missing" but it's definitely there
我的 Kiali 安装 returns 登录时 520。
在我的控制台中正在打印:
W1105 08:23:28.238619 1 kiali.go:145] Kiali is missing a secret that contains both 'username' and 'passphrase'
E1105 08:23:34.142346 1 authentication.go:108] Credentials are missing. Create a secret. Please refer to the documentation for more details.
这很奇怪,因为运行
kubectl describe secret kiali -n istio-system
为我提供了以下输出:
Name: kiali
Namespace: istio-system
Labels: app=kiali
flux.weave.works/sync-gc-mark=sha256.ZNNGIdiNNcRZl-YCuc551EB3Edthk6kuz-PlDVn6U9k
Annotations: flux.weave.works/sync-checksum: ae50afa268598e23696d4e980b1686829b3589e4
Type: Opaque
Data
====
passphrase: 5 bytes
username: 6 bytes
重新启动 pod 无法解决问题。
使用的版本
Kiali:版本:v0.18.1,提交:ef27faa
Istio:1.1.2
Kubernetes 风格和版本:Azure AKS
重现
使用以下资源将 Istio 部署到 AKS 集群:
https://github.com/timfpark/fabrikate-cloud-native
编辑:
原来只需要更新到 1.1.5。
另外我使用的 repo 不是官方版本。可以在这里找到:
https://github.com/microsoft/fabrikate-definitions/tree/master/definitions/fabrikate-cloud-native
当您确保该机密包含数据时,云的一个可能原因是该机密未正确安装。
检查是否挂载了secret:
$ kubectl describe deploy/<deployment-name> -n <namespace>
... ... ...
volumeMounts:
- name: kiali-secret
mountPath: "/kiali-secret"
volumes:
- name: kiali-secret
secret:
secretName: kiali
optional: true
... ... ...
我遇到了这个问题,升级到 istio 1.1.5 或更高版本。你可以将我的 example repo 与 istio 1.2.0 一起使用。那也可以解决它。
我的 Kiali 安装 returns 登录时 520。
在我的控制台中正在打印:
W1105 08:23:28.238619 1 kiali.go:145] Kiali is missing a secret that contains both 'username' and 'passphrase'
E1105 08:23:34.142346 1 authentication.go:108] Credentials are missing. Create a secret. Please refer to the documentation for more details.
这很奇怪,因为运行
kubectl describe secret kiali -n istio-system
为我提供了以下输出:
Name: kiali
Namespace: istio-system
Labels: app=kiali
flux.weave.works/sync-gc-mark=sha256.ZNNGIdiNNcRZl-YCuc551EB3Edthk6kuz-PlDVn6U9k
Annotations: flux.weave.works/sync-checksum: ae50afa268598e23696d4e980b1686829b3589e4
Type: Opaque
Data
====
passphrase: 5 bytes
username: 6 bytes
重新启动 pod 无法解决问题。
使用的版本 Kiali:版本:v0.18.1,提交:ef27faa
Istio:1.1.2
Kubernetes 风格和版本:Azure AKS
重现 使用以下资源将 Istio 部署到 AKS 集群: https://github.com/timfpark/fabrikate-cloud-native
编辑:
原来只需要更新到 1.1.5。 另外我使用的 repo 不是官方版本。可以在这里找到: https://github.com/microsoft/fabrikate-definitions/tree/master/definitions/fabrikate-cloud-native
当您确保该机密包含数据时,云的一个可能原因是该机密未正确安装。
检查是否挂载了secret:
$ kubectl describe deploy/<deployment-name> -n <namespace>
... ... ...
volumeMounts:
- name: kiali-secret
mountPath: "/kiali-secret"
volumes:
- name: kiali-secret
secret:
secretName: kiali
optional: true
... ... ...
我遇到了这个问题,升级到 istio 1.1.5 或更高版本。你可以将我的 example repo 与 istio 1.2.0 一起使用。那也可以解决它。