作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如何使用 IstioOperator 启用 sidecar 注入(inject)?这是我的配置,这还不够。
apiVersion: install.istio.io/v1alpha1
kind: IstioOperator
metadata:
name: control-plane-1-9-4
namespace: istio-system
spec:
components:
base:
enabled: true
pilot:
enabled: true
profile: default
revision: 1-9-4
values:
global:
proxy:
autoInject: enabled
最佳答案
默认情况下启用自动注入(inject)。
$ kubectl get configmap istio-sidecar-injector -n istio-system -o yaml | head -6
apiVersion: v1
data:
config: |-
# defaultTemplates defines the default template to use for pods that do not explicitly specify a template
defaultTemplates: [sidecar]
policy: enabled
您可以通过将值设置为
disabled
来禁用它。 .
values:
global:
proxy:
autoInject: disabled
现在
istio-injection=enabled
命名空间上的标签将被忽略。
annotations:
sidecar.istio.io/inject: "true"
更多关于
docs 中的主题
关于IstioOperator 和 sidecar 自动注入(inject),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67430525/
如何使用 IstioOperator 启用 sidecar 注入(inject)?这是我的配置,这还不够。 apiVersion: install.istio.io/v1alpha1 kind: Is
我是一名优秀的程序员,十分优秀!