- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 226 for sidecar (0.06 sec)
-
cni/pkg/cmd/root.go
registerStringParameter(constants.RepairNodeName, "", "The name of the managed node (will manage all nodes if unset)") registerStringParameter(constants.RepairSidecarAnnotation, "sidecar.istio.io/status", "An annotation key that indicates this pod contains an istio sidecar. All pods without this annotation will be ignored."+ "The value of the annotation is ignored.") registerStringParameter(constants.RepairInitContainerName, "istio-validation",
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Fri Aug 16 15:33:47 UTC 2024 - 12.7K bytes - Viewed (0) -
architecture/networking/pilot.md
Next, for an individual proxy we will check if it could possibly be impacted by the change. For example, we know a sidecar never is impacted by a `Gateway` update, and we can also look at scoping (from `Sidecar.egress.hosts`) to further restrict update scopes.
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Feb 07 17:53:24 UTC 2024 - 19.1K bytes - Viewed (0) -
istioctl/pkg/kubeinject/testdata/deployment/hello.yaml.injected
track: stable strategy: {} template: metadata: annotations: prometheus.io/path: /stats/prometheus prometheus.io/port: "15020" prometheus.io/scrape: "true" sidecar.istio.io/status: '{"initContainers":["istio-init"],"containers":["istio-proxy"],"volumes":null,"imagePullSecrets":null,"revision":"default"}' creationTimestamp: null labels: app: hello tier: backend
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Jun 15 15:02:17 UTC 2023 - 1K bytes - Viewed (0) -
istioctl/pkg/kubeinject/testdata/deployment/hello.yaml.iop.injected
track: stable strategy: {} template: metadata: annotations: prometheus.io/path: /stats/prometheus prometheus.io/port: "15020" prometheus.io/scrape: "true" sidecar.istio.io/status: '{"initContainers":["istio-init"],"containers":["istio-proxy"],"volumes":null,"imagePullSecrets":null,"revision":"default"}' creationTimestamp: null labels: app: hello tier: backend
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Jun 15 15:02:17 UTC 2023 - 1.1K bytes - Viewed (0) -
cni/pkg/constants/constants.go
RepairLabelKey = "repair-broken-pod-label-key" RepairLabelValue = "repair-broken-pod-label-value" RepairNodeName = "repair-node-name" RepairSidecarAnnotation = "repair-sidecar-annotation" RepairInitContainerName = "repair-init-container-name" RepairInitTerminationMsg = "repair-init-container-termination-message" RepairInitExitCode = "repair-init-container-exit-code"
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Fri Aug 16 15:33:47 UTC 2024 - 3K bytes - Viewed (0) -
istioctl/pkg/version/version.go
if err != nil { return nil, err } return proxy.GetProxyInfo(client, ctx.IstioNamespace()) } } // XdsVersionCommand gets the Control Plane and Sidecar versions via XDS func XdsVersionCommand(ctx cli.Context) *cobra.Command { var opts clioptions.ControlPlaneOptions var centralOpts clioptions.CentralControlPlaneOptions var xdsResponses *discovery.DiscoveryResponse
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Jul 29 21:11:35 UTC 2024 - 8.3K bytes - Viewed (0) -
cni/pkg/config/config.go
RepairPods bool // Whether to fix race condition by delete broken pods DeletePods bool // Whether to label broken pods LabelPods bool // Filters for race repair, including name of sidecar annotation, name of init container, // init container termination message and exit code. SidecarAnnotation string InitContainerName string InitTerminationMsg string InitExitCode int
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Fri Aug 16 15:33:47 UTC 2024 - 5.7K bytes - Viewed (0) -
manifests/charts/README.md
can use different Istio versions and different configuration defaults. `istioctl kube-inject` or the automatic sidecar injector are used to select the environment. In the case of the sidecar injector, the namespace label `istio-env: <NAME_OF_ENV>` is used instead of the conventional `istio-injected: true`. The name of the environment is defined as the namespace
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Oct 31 16:56:50 UTC 2024 - 7.4K bytes - Viewed (0) -
istioctl/pkg/tag/generate.go
"istio.io/istio/operator/pkg/render" "istio.io/istio/operator/pkg/values" "istio.io/istio/pkg/kube" "istio.io/istio/pkg/maps" ) const ( DefaultRevisionName = "default" istioInjectionWebhookSuffix = "sidecar-injector.istio.io" vwhBaseTemplateName = "istiod-default-validator" operatorNamespace = "operator.istio.io" ) // tagWebhookConfig holds config needed to render a tag webhook. type tagWebhookConfig struct {
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Oct 09 16:05:45 UTC 2024 - 13.3K bytes - Viewed (0) -
cni/pkg/iptables/iptables_linux.go
// Equiv: // ip rule add fwmark 0x111/0xfff pref 32764 lookup 100 // // Adds in-pod rules for marking packets with the istio-specific TPROXY mark. // A very similar mechanism is used for sidecar TPROXY. // // TODO largely identical/copied from tools/istio-iptables/pkg/capture/run_linux.go inpodMarkRule := netlink.NewRule() inpodMarkRule.Family = family inpodMarkRule.Table = RouteTableInbound
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Fri Sep 06 09:44:28 UTC 2024 - 4K bytes - Viewed (0)