- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for DISABLE_ENVOY (0.06 sec)
-
cni/pkg/plugin/plugin.go
log.Infof("excluded due to being already injected with istio-init container") return nil } if val, ok := pi.ProxyEnvironments["DISABLE_ENVOY"]; ok { if val, err := strconv.ParseBool(val); err == nil && val { log.Infof("excluded due to DISABLE_ENVOY on istio-proxy", podNamespace, podName) return nil } } if !pi.Containers.Contains(ISTIOPROXY) {
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Aug 14 19:36:19 UTC 2024 - 10.5K bytes - Viewed (0) -
cni/README.md
- pod label "istio.io/dataplane-mode" is not "none" - sidecar interception is enabled if: - "istio-init" container is not present in the pod. - istio-proxy container exists and - does not have DISABLE_ENVOY environment variable (which triggers proxyless mode) - has a istio-proxy container, with first 2 args "proxy" and "sidecar" - or less then 2 args, or first arg not proxy. - "sidecar.istio.io/inject" is not false
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Jul 17 23:10:17 UTC 2024 - 10.5K bytes - Viewed (0) -
cni/pkg/plugin/plugin_test.go
pod, ns := buildFakePodAndNSForClient() pod.ObjectMeta.Annotations[sidecarStatusKey] = "true" pod.Spec.Containers = append(pod.Spec.Containers, corev1.Container{ Name: "istio-init", Env: []corev1.EnvVar{{Name: "DISABLE_ENVOY", Value: "true"}}, }) mockIntercept := testDoAddRun(t, buildMockConf(true), testNSName, pod, ns) if len(mockIntercept.lastRedirect) != 0 { t.Fatal("failed to exclude pod") } }
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Oct 09 16:05:45 UTC 2024 - 17.3K bytes - Viewed (0)