欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

istio 初试

程序员文章站 2022-06-17 13:03:31
...

这里我们简单的部署天气的事例

  1. 下载 代码
git clone https://github.com/cloudnativebooks/cloud-native-istio
  1. 进入到cloud-native-istio中
cd cloud-native-istio
  1. 创建namespace weather ,并为这个命名空间打上istio-injection=enabled标签,打标签的意义在于以后部署在这个namespace下的所有服务都会关联istio
kubectl create ns weather
kubectl label namespace weather istio-injection=enabled
  1. 应用事例文件yaml
kubectl apply -f install/weather-v1.yaml -n weather

可能会出现错误,请将version 更改为apps/v1,并添加selector
istio 初试
istio 初试
5. 查看pod

kubectl get pod -n weather

istio 初试
6. 部署gateway.yaml, 并查看

#部署gateway.yaml
kubectl apply -f install/weather-gateway.yaml 
#查看gateway svc
kubectl get svc -n istio-system

istio 初试
7. ip + 上图端口 访问
istio 初试

为什么要用上图的端口,因为ingress是loadBalance,用于云服务,为了可以验证服务的部署成功,我们使用上面的端口

相关标签: istio