2

我正在 Azure kubernetes 服务上安装 istio 版本 1.1.5。我已经按照这个 istio 站点isito 安装中提到的安装过程

我已经安装了 istio-demo 安装包。安装成功后,很少有资源没有启动...

NAME                               READY     STATUS             RESTARTS   AGE
grafana-6b849f66c8-hfn24                  1/1       Running            0          10h
istio-citadel-6f958bff99-r4jdj            1/1       Running            0          10h
istio-galley-64867c7ddc-jggxx             1/1       Running            0          10h
istio-grafana-post-install-1.1.5-8mstl    0/1       Completed          0          10h
istio-ingressgateway-5f9765f889-gpvt2     0/1       Running            0          10h
istio-init-crd-10-8s7ng                   0/1       Completed          0          10h
istio-init-crd-11-jdgrd                   0/1       Completed          0          10h
istio-pilot-ff9d76fd8-5zz89               1/2       Running            0          10h
istio-policy-6d5fff9559-qdgqw             1/2       CrashLoopBackOff   225        10h
istio-sidecar-injector-847bcc5744-lgtzd   1/1       Running            0          10h
istio-telemetry-795546db77-sqr5j          1/2       CrashLoopBackOff   221        10h
istio-tracing-595796cf54-x78qr            1/1       Running            0          10h
kiali-5c584d45f6-q54kw                    1/1       Running            0          10h
prometheus-5fffdf8848-7ddkw               1/1       Running            0          10h

当我检查 pod 的描述时 istio-ingressgateway-5f9765f889-gpvt2,我得到以下错误..

就绪探测失败:HTTP 探测失败,状态码:503

同样对于其他 pod istio-telemetry-795546db77-sqr5j,我遇到了错误。

Liveness probe failed: Get http://10.40.226.41:15014/version : dial tcp 10.40.226.41:15014: connect: connection denied

我已经启用rewriteAppHTTPProbe=true但没有运气..

4

1 回答 1

0

同样的问题已经在这里讨论过

Istio 在启动时压倒了 API 服务器。

要修复它,您需要--useAdapterCRDs=false在 policy_container 和 telemetry_container 部分中添加混合器容器的参数。

于 2019-06-11T12:14:48.833 回答