Istio 1.0 部署

原文连接:Istio 1.0 部署html

北京时间 2018 年 8 月 1 日(建军节)凌晨 0 点,Istio 宣布推出 1.0 正式版本,并表示已可用于生产环境。这距离最初的 0.1 版本发布已过去一年多的时间。这个项目的组件相对比较复杂,原有的一些选项是靠 ConfigMap 以及 istioctl 分别调整的,如今经过从新设计的 Helm Chart,安装选项用 values.yml 或者 helm 命令行的方式来进行集中管理了。mysql

在安装 Istio 以前要确保 Kubernetes 集群(仅支持 v1.9 及之后版本)已部署并配置好本地的 kubectl 客户端。linux

1. 下载 Istio

$ wget https://github.com/istio/istio/releases/download/1.0.0/istio-1.0.0-linux.tar.gz
$ tar zxf istio-1.0.0-linux.tar.gz
$ cp istio-1.0.0/bin/istioctl /usr/local/bin/
复制代码

2. 使用 Helm 部署 Istio 服务

克隆 Istio 仓库:git

$ git clone https://github.com/istio/istio.git
$ cd istio
复制代码

安装包内的 Helm 目录中包含了 Istio 的 Chart,官方提供了两种方法:github

  • 用 Helm 生成 istio.yaml,而后自行安装。
  • Tiller 直接安装。

很明显,两种方法并无什么本质区别,这里咱们采用第一种方法来部署。sql

$ helm template install/kubernetes/helm/istio --name istio --namespace istio-system --set sidecarInjectorWebhook.enabled=true --set ingress.service.type=NodePort --set gateways.istio-ingressgateway.type=NodePort --set gateways.istio-egressgateway.type=NodePort --set tracing.enabled=true --set servicegraph.enabled=true --set prometheus.enabled=true --set tracing.jaeger.enabled=true --set grafana.enabled=true > istio.yaml

$ kubectl create namespace istio-system
$ kubectl create -f istio.yaml
复制代码

这里说的是使用 install/kubernetes/helm/istio 目录中的 Chart 进行渲染,生成的内容保存到 ./istio.yaml 文件之中。将 sidecarInjectorWebhook.enabled 设置为 true,从而使自动注入属性生效。api

部署完成后,能够检查 isotio-system namespace 中的服务是否正常运行:bash

$ kubectl -n istio-system get pods -o go-template='{{range .items}}{{.metadata.name}}{{"\n"}}{{end}}'

istio-citadel-f5779fbbb-brbxd
istio-cleanup-secrets-jjqg5
istio-egressgateway-6c5cc7dd86-l2c82
istio-galley-6bf8f6f4b7-twvzl
istio-ingressgateway-fbfdfc5c7-fg9xh
istio-pilot-85df58955d-g5bfh
istio-policy-74c48c8ccb-wd6h6
istio-sidecar-injector-cf5999cf8-h9smx
istio-statsd-prom-bridge-55965ff9c8-2hmzf
istio-telemetry-cb49594cc-gfd84
istio-tracing-77f9f94b98-9xvzs
prometheus-7456f56c96-xcdh4
servicegraph-5b8d7b4d5-lzhth
复制代码
  1. 过去的 istio-ca 现已改名 istio-citadel
  2. istio-cleanup-secrets 是一个 job,用于清理过去的 Istio 遗留下来的 CA 部署(包括 sa、deploy 以及 svc 三个对象)。
  3. egressgatewayingress 以及 ingressgateway,能够看出边缘部分的变更很大,之后会另行发文。

3. Prometheus、Grafana、Servicegraph 和 Jaeger

等全部 Pod 启动后,能够经过 NodePort、Ingress 或者 kubectl proxy 来访问这些服务。好比能够经过 Ingress 来访问服务。ide

首先为 Prometheus、Grafana、Servicegraph 和 Jaeger 服务建立 Ingress:post

$ cat ingress.yaml

---
apiVersion: extensions/v1beta1
kind: Ingress
metadata:
 name: prometheus
 namespace: istio-system
spec:
 rules:
 - host: prometheus.istio.io
 http:
 paths:
 - path: /
 backend:
 serviceName: prometheus
 servicePort: 9090
---
apiVersion: extensions/v1beta1
kind: Ingress
metadata:
 name: grafana
 namespace: istio-system
spec:
 rules:
 - host: grafana.istio.io
 http:
 paths:
 - path: /
 backend:
 serviceName: grafana
 servicePort: 3000
---
apiVersion: extensions/v1beta1
kind: Ingress
metadata:
 name: servicegraph
 namespace: istio-system
spec:
 rules:
 - host: servicegraph.istio.io
 http:
 paths:
 - path: /
 backend:
 serviceName: servicegraph
 servicePort: 8088
---
apiVersion: extensions/v1beta1
kind: Ingress
metadata:
 name: tracing
 namespace: istio-system
spec:
 rules:
 - host: tracing.istio.io
 http:
 paths:
 - path: /
 backend:
 serviceName: tracing
 servicePort: 80
复制代码
$ kubectl create -f ingress.yaml
复制代码

而后在你的本地电脑上添加四条 hosts

$Ingree_host prometheus.istio.io
$Ingree_host grafana.istio.io
$Ingree_host servicegraph.istio.io
$Ingree_host tracing.istio.io
复制代码

$Ingree_host 替换为 Ingress Controller 运行节点的 IP。

经过 http://grafana.istio.io 访问 Grafana 服务:

经过 http://servicegraph.istio.io 访问 ServiceGraph 服务,展现服务之间调用关系图。

  • http://servicegraph.istio.io/force/forcegraph.html : As explored above, this is an interactive D3.js visualization.

  • http://servicegraph.istio.io/dotviz : is a static Graphviz visualization.

  • http://servicegraph.istio.io/dotgraph : provides a DOT serialization.
  • http://servicegraph.istio.io/d3graph : provides a JSON serialization for D3 visualization.
  • http://servicegraph.istio.io/graph : provides a generic JSON serialization.

经过 http://tracing.istio.io/ 访问 Jaeger 跟踪页面:

经过 http://prometheus.istio.io/ 访问 Prometheus 页面:

若是你已经部署了 Prometheus-operator,能够没必要部署 Grafana,直接将 addons/grafana/dashboards 目录下的 Dashboard 模板复制出来放到 Prometheus-operator 的 Grafana 上,而后添加 istio-system 命名空间中的 Prometheus 数据源就能够监控 Istio 了。

4. Mesh Expansion

Istio 还支持管理非 Kubernetes 管理的应用。此时,须要在应用所在的 VM 或者物理中部署 Istio,具体步骤请参考 Mesh Expansion

部署好后,就能够向 Istio 注册应用,如:

# istioctl register servicename machine-ip portname:port
$ istioctl -n onprem register mysql 1.2.3.4 3306
$ istioctl -n onprem register svc1 1.2.3.4 http:7000
复制代码

5. 参考

相关文章
相关标签/搜索