在名称空间中启用Istio

时间:2020-06-25 13:52:15

标签: kubernetes namespaces google-kubernetes-engine istio

在创建名称空间yaml文件本身时,如何在名称空间中启用istio注入作为侧面汽车?我现在手动进行操作,可以对yaml文件进行哪些更改。

1 个答案:

答案 0 :(得分:1)

在创建名称空间时,可以通过将istio-injection=enabled设置为标签来在名称空间中启用Istio注入。

kind: Namespace
apiVersion: v1
metadata:
  name: test
  labels:
    istio-injection: enabled

您可以使用kubectl get ns --show-labels=true命令检查标签

[node2 ~]$ kubectl get ns --show-labels=true
NAME              STATUS   AGE     LABELS
default           Active   3m8s    <none>
kube-node-lease   Active   3m9s    <none>
kube-public       Active   3m9s    <none>
kube-system       Active   3m9s    <none>
test              Active   2m26s   istio-injection=enabled