在GCP Kubernetes上安装Istio - Istio deps失败

问题描述 投票:0回答:3

我正在关注Google Cloud Platform上的tutorial for Istio,并且能够启动并运行我的群集。我通过运行kubectl apply -f install/kubernetes/istio-demo-auth.yaml来开始演示应用程序,但是很多pod都不会出现。

我正在运行Istio 1.0.3

kubectl version --short
Client Version: v1.11.1
Server Version: v1.9.7-gke.6

当我运行命令kubectl get service -n istio-system 来验证istio pod已部署且容器正在运行时,其中许多都处于崩溃周期。关于如何调试这个的任何提示?

grafana-7b6d98d887-9dgdc                  1/1       Running             0          17h

istio-citadel-778747b96d-cw78t            1/1       Running             0          17h

istio-cleanup-secrets-2vjlf               0/1       Completed           0          17h

istio-egressgateway-7b8f4ccb6-rl69j       1/1       Running             123        17h

istio-galley-7557f8c985-jp975             0/1       ContainerCreating   0          17h

istio-grafana-post-install-n45x4          0/1       Error               202        17h

istio-ingressgateway-5f94fdc55f-dc2q5     1/1       Running             123        17h

istio-pilot-d6b56bf4d-czp9w               1/2       CrashLoopBackOff    328        17h

istio-policy-6c7d8454b-dpvfj              1/2       CrashLoopBackOff    500        17h

istio-security-post-install-qrzpq         0/1       CrashLoopBackOff    201        17h

istio-sidecar-injector-75cf59b857-z7wbc   0/1       ContainerCreating   0          17h

istio-telemetry-69db5c7575-4jp2d          1/2       CrashLoopBackOff    500        17h

istio-tracing-77f9f94b98-vjmhc            1/1       Running             0          17h

prometheus-67d4988588-gjmcp               1/1       Running             0          17h

servicegraph-57d8ff7686-x2r8r             1/1       Running             0          17h
kubernetes google-cloud-platform istio
3个回答
3
投票

这看起来像kubectl -n istio-system get pods的输出

提示,检查这些输出:

  • $ kubectl -n istio-system logs istio-pilot-d6b56bf4d-czp9w
  • $ kubectl -n istio-system logs istio-policy-6c7d8454b-dpvfj
  • $ kubectl -n istio-system logs istio-grafana-post-install-n45x4
  • $ kubectl -n istio-system logs istio-telemetry-69db5c7575-4jp2d
  • 检查install/kubernetes/istio-demo-auth.yaml中有pod崩溃的部署/服务/配置映射定义。

0
投票

尝试使用Helm via template进行安装。

你通常会想要Grafana,Zipkin和Kiali。这对我有用:

1)kubectl apply -f install/kubernetes/helm/istio/templates/crds.yaml

2)helm template install/kubernetes/helm/istio --name istio --namespace istio-system --set grafana.enabled=true --set servicegraph.enabled=true --set tracing.enabled=true --set kiali.enabled=true --set sidecarInjectorWebhook.enabled=true --set global.tag=1.0.5 > $HOME/istio.yaml

3)kubectl create namespace istio-system

4)kubectl apply -f $HOME/istio.yaml


0
投票

我有类似的问题 - 结果我的NAT网关配置不正确。我用来创建私有集群的Terraform创建了一个我需要删除的额外默认互联网网关。

有些人提出来了,有些人没有 - 我认为可能有些图像被缓存在集群可能达到的地方,就像谷歌回购一样。

© www.soinside.com 2019 - 2024. All rights reserved.