首页 / 浏览问题 / 云GIS / 问题详情
在k8s上面部署imanager报错
6EXP 2023年06月13日

安装的软件:

报错问题:

报错文本:

namespace/supermap labeled
namespace/istio-system created
namespace/istio-system labeled
✔ Istio core installed                                                                                                                                                                                                                                                        
✔ Istiod installed                                                                                                                                                                                                                                                            
✔ Addons installed                                                                                                                                                                                                                                                            
✘ Egress gateways encountered an error: failed to wait for resource: resources not ready after 10m0s: timed out waiting for the condition-system/istio-egressgateway, Deployment/istio-system/istio-ingressgateway                                                            
Deployment/istio-system/istio-egressgateway                                                                                          
✘ Ingress gateways encountered an error: failed to wait for resource: resources not ready after 10m0s: timed out waiting for the conditionessgateway                                                                                                                          
Deployment/istio-system/cluster-local-gateway
Deployment/istio-system/istio-ingressgateway                                           
- Pruning removed resources                                                                                                                                                                                                          Error: failed to apply manifests: errors occurred during operation

请问这个报错问题应该如何解决
 

1个回答

您好!

提供的报错来看,在安装istio过程中遇到了两个错误:

· Egress gateway 部署失败

· Ingress gateway 部署失败

这些部署失败可能是因为没有足够的资源来部署,从而导致超时。

Istio 是一个开源的服务网格平台,为微服务架构提供流量管理、安全性、可观察性和策略执行等服务,其主要用途是帮助开发人员构建和管理复杂的分布式系统。

在部署 iManager 产品时,如无特殊需求,通常可以选择关闭该服务,以确保资源的可用性。

如需关闭 istio 服务,请先执行 shutdown.sh ,再到 value.yaml 文件中将以下参数设置为 false,最后执行 startup.sh。

 deploy_istio_enabled: false
 deploy_istio_enable_egress: false
 deploy_istio_enable_kiali_tracing: false

希望可以帮助到您!

李松
1
485EXP 2023年06月13日
谢谢大佬
...