You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
--ignore-version-check set to disable abi version compatability check.
37
37
--istio-namespace string the namespace where the Istio control plane is installed (default "istio-system")
38
+
--istiod-name string deployment name of the istiod (default "istiod")
38
39
-l, --labels stringToString labels of the deployment or daemonset into which to inject the filter. if not set, will apply to all workloads in the target namespace (default [])
39
40
-n, --namespace string namespace of the workload(s) to inject the filter. (default "default")
40
41
--patch-context string patch context of the filter. possible values are any, inbound, outbound, gateway (default "inbound")
--ignore-version-check set to disable abi version compatability check.
29
29
--istio-namespace string the namespace where the Istio control plane is installed (default "istio-system")
30
+
--istiod-name string deployment name of the istiod (default "istiod")
30
31
-l, --labels stringToString labels of the deployment or daemonset into which to inject the filter. if not set, will apply to all workloads in the target namespace (default [])
31
32
-n, --namespace string namespace of the workload(s) to inject the filter. (default "default")
32
33
--patch-context string patch context of the filter. possible values are any, inbound, outbound, gateway (default "inbound")
flags.StringToStringVarP(&opts.workload.Labels, "labels", "l", nil, "labels of the deployment or daemonset into which to inject the filter. if not set, will apply to all workloads in the target namespace")
96
97
flags.StringVarP(&opts.workload.Namespace, "namespace", "n", "default", "namespace of the workload(s) to inject the filter.")
98
+
flags.StringVar(&opts.istiodDeploymentName, "istiod-name", "istiod", "deployment name of the istiod")
97
99
flags.StringVarP(&opts.workload.Kind, "workload-type", "t", istio.WorkloadTypeDeployment, "type of workload into which the filter should be injected. possible values are "+strings.Join(SupportedWorkloadTypes, ", "))
98
100
flags.StringVar(&opts.patchContext, "patch-context", istio.PatchContextInbound, "patch context of the filter. possible values are "+strings.Join(istio.SupportedPatchContexts, ", "))
99
101
flags.StringVar(&opts.istioNamespace, "istio-namespace", "istio-system", "the namespace where the Istio control plane is installed")
0 commit comments