- istioctl
- istioctl analyze
- istioctl authz
- istioctl bug-report
- istioctl bug-report version
- istioctl dashboard
- istioctl dashboard controlz
- istioctl dashboard envoy
- istioctl dashboard grafana
- istioctl dashboard jaeger
- istioctl dashboard kiali
- istioctl dashboard prometheus
- istioctl dashboard zipkin
- istioctl experimental
- istioctl experimental add-to-mesh
- istioctl experimental add-to-mesh deployment
- istioctl experimental add-to-mesh external-service
- istioctl experimental add-to-mesh service
- istioctl experimental authz
- istioctl experimental authz check
- istioctl experimental config
- istioctl experimental config list
- istioctl experimental create-remote-secret
- istioctl experimental describe
- istioctl experimental describe pod
- istioctl experimental describe service
- istioctl experimental injector
- istioctl experimental injector list
- istioctl experimental istiod
- istioctl experimental istiod log
- istioctl experimental kube-uninject
- istioctl experimental metrics
- istioctl experimental precheck
- istioctl experimental proxy-status
- istioctl experimental remove-from-mesh
- istioctl experimental remove-from-mesh deployment
- istioctl experimental remove-from-mesh external-service
- istioctl experimental remove-from-mesh service
- istioctl experimental uninstall
- istioctl experimental version
- istioctl experimental wait
- istioctl experimental workload
- istioctl experimental workload entry
- istioctl experimental workload entry configure
- istioctl experimental workload group
- istioctl experimental workload group create
- istioctl install
- istioctl kube-inject
- istioctl manifest
- istioctl manifest diff
- istioctl manifest generate
- istioctl manifest install
- istioctl operator
- istioctl operator dump
- istioctl operator init
- istioctl operator remove
- istioctl options
- istioctl profile
- istioctl profile diff
- istioctl profile dump
- istioctl profile list
- istioctl proxy-config
- istioctl proxy-config bootstrap
- istioctl proxy-config cluster
- istioctl proxy-config endpoint
- istioctl proxy-config listener
- istioctl proxy-config log
- istioctl proxy-config route
- istioctl proxy-config secret
- istioctl proxy-status
- istioctl upgrade
- istioctl validate
- istioctl verify-install
- istioctl version
- Environment variables
- Exported metrics
istioctl
Istio configuration command line utility for service operators to debug and diagnose their Istio mesh.
Flags | Shorthand | Description |
---|---|---|
—context <string> | The name of the kubeconfig context to use (default )</td></tr><tr><td><code>--istioNamespace <string></code></td><td><code>-i</code></td><td>Istio system namespace (default `istio-system`)</td></tr><tr><td><code>--kubeconfig <string></code></td><td><code>-c</code></td><td>Kubernetes configuration file (default ) | |
—namespace <string> | -n | Config namespace (default ``) |
istioctl analyze
Analyze Istio configuration and print validation messages
istioctl analyze <file>... [flags]
Flags | Shorthand | Description |
---|---|---|
—all-namespaces | -A | Analyze all namespaces |
—color | Default true. Disable with ‘=false’ or set $TERM to dumb | |
—context <string> | The name of the kubeconfig context to use (default )</td></tr><tr><td><code>--failure-threshold <Level></code></td><td></td><td>The severity level of analysis at which to set a non-zero exit code. Valid values: [Info Warning Error] (default `Error`)</td></tr><tr><td><code>--istioNamespace <string></code></td><td><code>-i</code></td><td>Istio system namespace (default `istio-system`)</td></tr><tr><td><code>--kubeconfig <string></code></td><td><code>-c</code></td><td>Kubernetes configuration file (default ) | |
—list-analyzers | -L | List the analyzers available to run. Suppresses normal execution. |
—meshConfigFile <string> | Overrides the mesh config values to use for analysis. (default )</td></tr><tr><td><code>--namespace <string></code></td><td><code>-n</code></td><td>Config namespace (default ) | |
—output <string> | -o | Output format: one of [log json yaml] (default log ) |
—output-threshold <Level> | The severity level of analysis at which to display messages. Valid values: [Info Warning Error] (default Info ) | |
—recursive | -R | Process directory arguments recursively. Useful when you want to analyze related manifests organized within the same directory. |
—suppress <stringArray> | -S | Suppress reporting a message code on a specific resource. Values are supplied in the form <code>=<resource> (e.g. ‘—suppress “IST0102=DestinationRule primary-dr.default”‘). Can be repeated. You can include the wildcard character ‘‘ to support a partial match (e.g. ‘—suppress “IST0102=DestinationRule .default” ). (default [] ) |
—timeout <duration> | The duration to wait before failing (default 30s ) | |
—use-kube | -k | Use live Kubernetes cluster for analysis. Set —use-kube=false to analyze files only. |
—verbose | -v | Enable verbose output |
Examples
# Analyze the current live cluster
istioctl analyze
# Analyze the current live cluster, simulating the effect of applying additional yaml files
istioctl analyze a.yaml b.yaml my-app-config/
# Analyze the current live cluster, simulating the effect of applying a directory of config recursively
istioctl analyze --recursive my-istio-config/
# Analyze yaml files without connecting to a live cluster
istioctl analyze --use-kube=false a.yaml b.yaml my-app-config/
# Analyze the current live cluster and suppress PodMissingProxy for pod mypod in namespace 'testing'.
istioctl analyze -S "IST0103=Pod mypod.testing"
# Analyze the current live cluster and suppress PodMissingProxy for all pods in namespace 'testing',
# and suppress MisplacedAnnotation on deployment foobar in namespace default.
istioctl analyze -S "IST0103=Pod *.testing" -S "IST0107=Deployment foobar.default"
# List available analyzers
istioctl analyze -L
istioctl authz
(authz is experimental. Use `istioctl experimental authz`)
istioctl authz [flags]
Flags | Shorthand | Description |
---|---|---|
—context <string> | The name of the kubeconfig context to use (default )</td></tr><tr><td><code>--istioNamespace <string></code></td><td><code>-i</code></td><td>Istio system namespace (default `istio-system`)</td></tr><tr><td><code>--kubeconfig <string></code></td><td><code>-c</code></td><td>Kubernetes configuration file (default ) | |
—namespace <string> | -n | Config namespace (default ``) |
istioctl bug-report
bug-report selectively captures cluster information and logs into an archive to help diagnose problems. Proxy logs can be filtered using: —include|—exclude ns1,ns2…/dep1,dep2…/pod1,pod2…/cntr1,cntr…/lbl1=val1,lbl2=val2…/ann1=val1,ann2=val2… where ns=namespace, dep=deployment, cntr=container, lbl=label, ann=annotation
The filter spec is interpreted as ‘must be in (ns1 OR ns2) AND (dep1 OR dep2) AND (cntr1 OR cntr2)…’ The log will be included only if the container matches at least one include filter and does not match any exclude filters. All parts of the filter are optional and can be omitted e.g. ns1//pod1 filters only for namespace ns1 and pod1. All names except label and annotation keys support ‘*‘ glob matching pattern.
e.g. —include ns1,ns2 (only namespaces ns1 and ns2) —include n*//p*/l=v* (pods with name beginning with ‘p’ in namespaces beginning with ‘n’ and having label ‘l’ with value beginning with ‘v’.)
istioctl bug-report [flags]
Flags | Shorthand | Description |
---|---|---|
—context <string> | The name of the kubeconfig context to use (default )</td></tr><tr><td><code>--critical-errs <stringSlice></code></td><td></td><td>List of comma separated glob patters to match against log error strings. If any pattern matches an error in the log, the logs is given the highest priority for archive inclusion. (default `[]`)</td></tr><tr><td><code>--dir <string></code></td><td></td><td>Set a specific directory for temporary artifact storage. (default ) | |
—dry-run | Only log commands that would be run, don’t fetch or write. | |
—duration <duration> | How far to go back in time from end-time for log entries to include in the archive. Default is infinity. If set, start-time must be unset. (default 0s ) | |
—end-time <string> | End time for the range of log entries to include in the archive. Default is now. (default )</td></tr><tr><td><code>--exclude <stringSlice></code></td><td></td><td>Spec for which pods' proxy logs to exclude from the archive, after the include spec is processed. See above for format and examples. (default `["kube-system, kube-public, kube-node-lease, local-path-storage"]`)</td></tr><tr><td><code>--filename <string></code></td><td><code>-f</code></td><td>Path to a file containing configuration in YAML format. The file contents are applied over the default values and flag settings, with lists being replaced per JSON merge semantics. (default ) | |
—full-secrets | If set, secret contents are included in output. | |
—ignore-errs <stringSlice> | List of comma separated glob patters to match against log error strings. Any error matching these patters is ignored when calculating the log importance heuristic. (default [] ) | |
—include <stringSlice> | Spec for which pods’ proxy logs to include in the archive. See above for format and examples. (default [] ) | |
—istio-namespace <string> | Namespace where Istio control plane is installed. (default istio-system ) | |
—istioNamespace <string> | -i | Istio system namespace (default istio-system ) |
—kubeconfig <string> | -c | Kubernetes configuration file (default )</td></tr><tr><td><code>--namespace <string></code></td><td><code>-n</code></td><td>Config namespace (default ) |
—start-time <string> | Start time for the range of log entries to include in the archive. Default is the infinite past. If set, Since must be unset. (default `)</td></tr><tr><td><code>--timeout <duration></code></td><td></td><td>Maximum amount of time to spend fetching logs. When timeout is reached only the logs captured so far are saved to the archive. (default 30m0s`) |
istioctl bug-report version
Prints out build version information
istioctl bug-report version [flags]
Flags | Shorthand | Description |
---|---|---|
—context <string> | Name of the kubeconfig Context to use. (default )</td></tr><tr><td><code>--critical-errs <stringSlice></code></td><td></td><td>List of comma separated glob patters to match against log error strings. If any pattern matches an error in the log, the logs is given the highest priority for archive inclusion. (default `[]`)</td></tr><tr><td><code>--dir <string></code></td><td></td><td>Set a specific directory for temporary artifact storage. (default ) | |
—dry-run | Only log commands that would be run, don’t fetch or write. | |
—duration <duration> | How far to go back in time from end-time for log entries to include in the archive. Default is infinity. If set, start-time must be unset. (default 0s ) | |
—end-time <string> | End time for the range of log entries to include in the archive. Default is now. (default )</td></tr><tr><td><code>--exclude <stringSlice></code></td><td></td><td>Spec for which pods' proxy logs to exclude from the archive, after the include spec is processed. See above for format and examples. (default `["kube-system, kube-public, kube-node-lease, local-path-storage"]`)</td></tr><tr><td><code>--filename <string></code></td><td><code>-f</code></td><td>Path to a file containing configuration in YAML format. The file contents are applied over the default values and flag settings, with lists being replaced per JSON merge semantics. (default ) | |
—full-secrets | If set, secret contents are included in output. | |
—ignore-errs <stringSlice> | List of comma separated glob patters to match against log error strings. Any error matching these patters is ignored when calculating the log importance heuristic. (default [] ) | |
—include <stringSlice> | Spec for which pods’ proxy logs to include in the archive. See above for format and examples. (default [] ) | |
—istio-namespace <string> | Namespace where Istio control plane is installed. (default istio-system ) | |
—istioNamespace <string> | -i | Istio system namespace (default istio-system ) |
—kubeconfig <string> | -c | Path to kube config. (default )</td></tr><tr><td><code>--namespace <string></code></td><td><code>-n</code></td><td>Config namespace (default ) |
—output <string> | -o | One of ‘yaml’ or ‘json’. (default )</td></tr><tr><td><code>--short</code></td><td><code>-s</code></td><td>Use --short=false to generate full version information</td></tr><tr><td><code>--start-time <string></code></td><td></td><td>Start time for the range of log entries to include in the archive. Default is the infinite past. If set, Since must be unset. (default ) |
—timeout <duration> | Maximum amount of time to spend fetching logs. When timeout is reached only the logs captured so far are saved to the archive. (default 30m0s ) |
istioctl dashboard
Access to Istio web UIs
istioctl dashboard [flags]
istioctl dash [flags]
istioctl d [flags]
Flags | Shorthand | Description |
---|---|---|
—address <string> | Address to listen on. Only accepts IP address or localhost as a value. When localhost is supplied, istioctl will try to bind on both 127.0.0.1 and ::1 and will fail if neither of these address are available to bind. (default localhost ) | |
—browser | When —browser is supplied as false, istioctl dashboard will not open the browser. Default is true which means istioctl dashboard will always open a browser to view the dashboard. | |
—context <string> | The name of the kubeconfig context to use (default )</td></tr><tr><td><code>--istioNamespace <string></code></td><td><code>-i</code></td><td>Istio system namespace (default `istio-system`)</td></tr><tr><td><code>--kubeconfig <string></code></td><td><code>-c</code></td><td>Kubernetes configuration file (default ) | |
—namespace <string> | -n | Config namespace (default `)</td></tr><tr><td><code>--port <int></code></td><td><code>-p</code></td><td>Local port to listen to (default 0`) |
istioctl dashboard controlz
Open the ControlZ web UI for a pod in the Istio control plane
istioctl dashboard controlz [<type>/]<name>[.<namespace>] [flags]
Flags | Shorthand | Description |
---|---|---|
—address <string> | Address to listen on. Only accepts IP address or localhost as a value. When localhost is supplied, istioctl will try to bind on both 127.0.0.1 and ::1 and will fail if neither of these address are available to bind. (default localhost ) | |
—browser | When —browser is supplied as false, istioctl dashboard will not open the browser. Default is true which means istioctl dashboard will always open a browser to view the dashboard. | |
—context <string> | The name of the kubeconfig context to use (default )</td></tr><tr><td><code>--ctrlz_port <int></code></td><td></td><td>ControlZ port (default `9876`)</td></tr><tr><td><code>--istioNamespace <string></code></td><td><code>-i</code></td><td>Istio system namespace (default `istio-system`)</td></tr><tr><td><code>--kubeconfig <string></code></td><td><code>-c</code></td><td>Kubernetes configuration file (default ) | |
—namespace <string> | -n | Namespace where the addon is running, if not specified, istio-system would be used (default istio-system ) |
—port <int> | -p | Local port to listen to (default 0 ) |
—selector <string> | -l | Label selector (default ``) |
Examples
# Open ControlZ web UI for the istiod-123-456.istio-system pod
istioctl dashboard controlz istiod-123-456.istio-system
# Open ControlZ web UI for the istiod-56dd66799-jfdvs pod in a custom namespace
istioctl dashboard controlz istiod-123-456 -n custom-ns
# Open ControlZ web UI for any Istiod pod
istioctl dashboard controlz deployment/istiod.istio-system
# with short syntax
istioctl dash controlz pilot-123-456.istio-system
istioctl d controlz pilot-123-456.istio-system
istioctl dashboard envoy
Open the Envoy admin dashboard for a sidecar
istioctl dashboard envoy [<type>/]<name>[.<namespace>] [flags]
Flags | Shorthand | Description |
---|---|---|
—address <string> | Address to listen on. Only accepts IP address or localhost as a value. When localhost is supplied, istioctl will try to bind on both 127.0.0.1 and ::1 and will fail if neither of these address are available to bind. (default localhost ) | |
—browser | When —browser is supplied as false, istioctl dashboard will not open the browser. Default is true which means istioctl dashboard will always open a browser to view the dashboard. | |
—context <string> | The name of the kubeconfig context to use (default )</td></tr><tr><td><code>--istioNamespace <string></code></td><td><code>-i</code></td><td>Istio system namespace (default `istio-system`)</td></tr><tr><td><code>--kubeconfig <string></code></td><td><code>-c</code></td><td>Kubernetes configuration file (default ) | |
—namespace <string> | -n | Namespace where the addon is running, if not specified, istio-system would be used (default istio-system ) |
—port <int> | -p | Local port to listen to (default 0 ) |
—selector <string> | -l | Label selector (default ``) |
Examples
# Open Envoy dashboard for the productpage-123-456.default pod
istioctl dashboard envoy productpage-123-456.default
# Open Envoy dashboard for one pod under a deployment
istioctl dashboard envoy deployment/productpage-v1
# with short syntax
istioctl dash envoy productpage-123-456.default
istioctl d envoy productpage-123-456.default
istioctl dashboard grafana
Open Istio’s Grafana dashboard
istioctl dashboard grafana [flags]
Flags | Shorthand | Description |
---|---|---|
—address <string> | Address to listen on. Only accepts IP address or localhost as a value. When localhost is supplied, istioctl will try to bind on both 127.0.0.1 and ::1 and will fail if neither of these address are available to bind. (default localhost ) | |
—browser | When —browser is supplied as false, istioctl dashboard will not open the browser. Default is true which means istioctl dashboard will always open a browser to view the dashboard. | |
—context <string> | The name of the kubeconfig context to use (default )</td></tr><tr><td><code>--istioNamespace <string></code></td><td><code>-i</code></td><td>Istio system namespace (default `istio-system`)</td></tr><tr><td><code>--kubeconfig <string></code></td><td><code>-c</code></td><td>Kubernetes configuration file (default ) | |
—namespace <string> | -n | Namespace where the addon is running, if not specified, istio-system would be used (default istio-system ) |
—port <int> | -p | Local port to listen to (default 0 ) |
Examples
istioctl dashboard grafana
# with short syntax
istioctl dash grafana
istioctl d grafana
istioctl dashboard jaeger
Open Istio’s Jaeger dashboard
istioctl dashboard jaeger [flags]
Flags | Shorthand | Description |
---|---|---|
—address <string> | Address to listen on. Only accepts IP address or localhost as a value. When localhost is supplied, istioctl will try to bind on both 127.0.0.1 and ::1 and will fail if neither of these address are available to bind. (default localhost ) | |
—browser | When —browser is supplied as false, istioctl dashboard will not open the browser. Default is true which means istioctl dashboard will always open a browser to view the dashboard. | |
—context <string> | The name of the kubeconfig context to use (default )</td></tr><tr><td><code>--istioNamespace <string></code></td><td><code>-i</code></td><td>Istio system namespace (default `istio-system`)</td></tr><tr><td><code>--kubeconfig <string></code></td><td><code>-c</code></td><td>Kubernetes configuration file (default ) | |
—namespace <string> | -n | Namespace where the addon is running, if not specified, istio-system would be used (default istio-system ) |
—port <int> | -p | Local port to listen to (default 0 ) |
Examples
istioctl dashboard jaeger
# with short syntax
istioctl dash jaeger
istioctl d jaeger
istioctl dashboard kiali
Open Istio’s Kiali dashboard
istioctl dashboard kiali [flags]
Flags | Shorthand | Description |
---|---|---|
—address <string> | Address to listen on. Only accepts IP address or localhost as a value. When localhost is supplied, istioctl will try to bind on both 127.0.0.1 and ::1 and will fail if neither of these address are available to bind. (default localhost ) | |
—browser | When —browser is supplied as false, istioctl dashboard will not open the browser. Default is true which means istioctl dashboard will always open a browser to view the dashboard. | |
—context <string> | The name of the kubeconfig context to use (default )</td></tr><tr><td><code>--istioNamespace <string></code></td><td><code>-i</code></td><td>Istio system namespace (default `istio-system`)</td></tr><tr><td><code>--kubeconfig <string></code></td><td><code>-c</code></td><td>Kubernetes configuration file (default ) | |
—namespace <string> | -n | Namespace where the addon is running, if not specified, istio-system would be used (default istio-system ) |
—port <int> | -p | Local port to listen to (default 0 ) |
Examples
istioctl dashboard kiali
# with short syntax
istioctl dash kiali
istioctl d kiali
istioctl dashboard prometheus
Open Istio’s Prometheus dashboard
istioctl dashboard prometheus [flags]
Flags | Shorthand | Description |
---|---|---|
—address <string> | Address to listen on. Only accepts IP address or localhost as a value. When localhost is supplied, istioctl will try to bind on both 127.0.0.1 and ::1 and will fail if neither of these address are available to bind. (default localhost ) | |
—browser | When —browser is supplied as false, istioctl dashboard will not open the browser. Default is true which means istioctl dashboard will always open a browser to view the dashboard. | |
—context <string> | The name of the kubeconfig context to use (default )</td></tr><tr><td><code>--istioNamespace <string></code></td><td><code>-i</code></td><td>Istio system namespace (default `istio-system`)</td></tr><tr><td><code>--kubeconfig <string></code></td><td><code>-c</code></td><td>Kubernetes configuration file (default ) | |
—namespace <string> | -n | Namespace where the addon is running, if not specified, istio-system would be used (default istio-system ) |
—port <int> | -p | Local port to listen to (default 0 ) |
Examples
istioctl dashboard prometheus
# with short syntax
istioctl dash prometheus
istioctl d prometheus
istioctl dashboard zipkin
Open Istio’s Zipkin dashboard
istioctl dashboard zipkin [flags]
Flags | Shorthand | Description |
---|---|---|
—address <string> | Address to listen on. Only accepts IP address or localhost as a value. When localhost is supplied, istioctl will try to bind on both 127.0.0.1 and ::1 and will fail if neither of these address are available to bind. (default localhost ) | |
—browser | When —browser is supplied as false, istioctl dashboard will not open the browser. Default is true which means istioctl dashboard will always open a browser to view the dashboard. | |
—context <string> | The name of the kubeconfig context to use (default )</td></tr><tr><td><code>--istioNamespace <string></code></td><td><code>-i</code></td><td>Istio system namespace (default `istio-system`)</td></tr><tr><td><code>--kubeconfig <string></code></td><td><code>-c</code></td><td>Kubernetes configuration file (default ) | |
—namespace <string> | -n | Namespace where the addon is running, if not specified, istio-system would be used (default istio-system ) |
—port <int> | -p | Local port to listen to (default 0 ) |
Examples
istioctl dashboard zipkin
# with short syntax
istioctl dash zipkin
istioctl d zipkin
istioctl experimental
Experimental commands that may be modified or deprecated
Flags | Shorthand | Description |
---|---|---|
—context <string> | The name of the kubeconfig context to use (default )</td></tr><tr><td><code>--istioNamespace <string></code></td><td><code>-i</code></td><td>Istio system namespace (default `istio-system`)</td></tr><tr><td><code>--kubeconfig <string></code></td><td><code>-c</code></td><td>Kubernetes configuration file (default ) | |
—namespace <string> | -n | Config namespace (default ``) |
istioctl experimental add-to-mesh
‘istioctl experimental add-to-mesh’ restarts pods with an Istio sidecar or configures meshed pod access to external services. Use ‘add-to-mesh’ as an alternate to namespace-wide auto injection for troubleshooting compatibility.
The ‘remove-from-mesh’ command can be used to restart with the sidecar removed.
THIS COMMAND IS UNDER ACTIVE DEVELOPMENT AND NOT READY FOR PRODUCTION USE.
istioctl experimental add-to-mesh [flags]
istioctl experimental add [flags]
Flags | Shorthand | Description |
---|---|---|
—context <string> | The name of the kubeconfig context to use (default )</td></tr><tr><td><code>--injectConfigFile <string></code></td><td></td><td>Injection configuration filename. Cannot be used with --injectConfigMapName (default ) | |
—injectConfigMapName <string> | ConfigMap name for Istio sidecar injection, key should be “config”. (default istio-sidecar-injector ) | |
—istioNamespace <string> | -i | Istio system namespace (default istio-system ) |
—kubeconfig <string> | -c | Kubernetes configuration file (default )</td></tr><tr><td><code>--meshConfigFile <string></code></td><td></td><td>Mesh configuration filename. Takes precedence over --meshConfigMapName if set (default ) |
—meshConfigMapName <string> | ConfigMap name for Istio mesh configuration, key should be “mesh” (default istio ) | |
—namespace <string> | -n | Config namespace (default )</td></tr><tr><td><code>--valuesFile <string></code></td><td></td><td>Injection values configuration filename. (default ) |
Examples
# Restart all productpage pods with an Istio sidecar
istioctl experimental add-to-mesh service productpage
# Restart just pods from the productpage-v1 deployment
istioctl experimental add-to-mesh deployment productpage-v1
# Restart just pods from the details-v1 deployment
istioctl x add deployment details-v1
# Control how meshed pods see an external service
istioctl experimental add-to-mesh external-service vmhttp 172.12.23.125,172.12.23.126 \
http:9080 tcp:8888 --labels app=test,version=v1 --annotations env=stage --serviceaccount stageAdmin
istioctl experimental add-to-mesh deployment
‘istioctl experimental add-to-mesh deployment’ restarts pods with the Istio sidecar. Use ‘add-to-mesh’ to test deployments for compatibility with Istio. It can be used instead of namespace-wide auto-injection of sidecars and is especially helpful for compatibility testing.
If your deployment does not function after using ‘add-to-mesh’ you must re-deploy it and troubleshoot it for Istio compatibility. See https://istio.io/v1.9/docs/ops/deployment/requirements/
See also ‘istioctl experimental remove-from-mesh deployment’ which does the reverse.
THIS COMMAND IS UNDER ACTIVE DEVELOPMENT AND NOT READY FOR PRODUCTION USE.
istioctl experimental add-to-mesh deployment <deployment> [flags]
istioctl experimental add-to-mesh deploy <deployment> [flags]
istioctl experimental add-to-mesh dep <deployment> [flags]
Flags | Shorthand | Description |
---|---|---|
—context <string> | The name of the kubeconfig context to use (default )</td></tr><tr><td><code>--injectConfigFile <string></code></td><td></td><td>Injection configuration filename. Cannot be used with --injectConfigMapName (default ) | |
—injectConfigMapName <string> | ConfigMap name for Istio sidecar injection, key should be “config”. (default istio-sidecar-injector ) | |
—istioNamespace <string> | -i | Istio system namespace (default istio-system ) |
—kubeconfig <string> | -c | Kubernetes configuration file (default )</td></tr><tr><td><code>--meshConfigFile <string></code></td><td></td><td>Mesh configuration filename. Takes precedence over --meshConfigMapName if set (default ) |
—meshConfigMapName <string> | ConfigMap name for Istio mesh configuration, key should be “mesh” (default istio ) | |
—namespace <string> | -n | Config namespace (default )</td></tr><tr><td><code>--revision <string></code></td><td></td><td>Control plane revision (default ) |
—valuesFile <string> | Injection values configuration filename. (default ``) |
Examples
# Restart pods from the productpage-v1 deployment with Istio sidecar
istioctl experimental add-to-mesh deployment productpage-v1
# Restart pods from the details-v1 deployment with Istio sidecar
istioctl x add-to-mesh deploy details-v1
# Restart pods from the ratings-v1 deployment with Istio sidecar
istioctl x add dep ratings-v1
istioctl experimental add-to-mesh external-service
istioctl experimental add-to-mesh external-service create a ServiceEntry and a Service without selector for the specified external service in Istio service mesh. The typical usage scenario is Mesh Expansion on VMs.
See also ‘istioctl experimental remove-from-mesh external-service’ which does the reverse.
THIS COMMAND IS UNDER ACTIVE DEVELOPMENT AND NOT READY FOR PRODUCTION USE.
istioctl experimental add-to-mesh external-service <svcname> <ip> [name1:]port1 [[name2:]port2] ... [flags]
istioctl experimental add-to-mesh es <svcname> <ip> [name1:]port1 [[name2:]port2] ... [flags]
Flags | Shorthand | Description |
---|---|---|
—annotations <stringSlice> | -a | List of string annotations to apply if creating a service/endpoint; e.g. -a foo=bar,x=y (default [] ) |
—context <string> | The name of the kubeconfig context to use (default )</td></tr><tr><td><code>--injectConfigFile <string></code></td><td></td><td>Injection configuration filename. Cannot be used with --injectConfigMapName (default ) | |
—injectConfigMapName <string> | ConfigMap name for Istio sidecar injection, key should be “config”. (default istio-sidecar-injector ) | |
—istioNamespace <string> | -i | Istio system namespace (default istio-system ) |
—kubeconfig <string> | -c | Kubernetes configuration file (default )</td></tr><tr><td><code>--labels <stringSlice></code></td><td><code>-l</code></td><td>List of labels to apply if creating a service/endpoint; e.g. -l env=prod,vers=2 (default `[]`)</td></tr><tr><td><code>--meshConfigFile <string></code></td><td></td><td>Mesh configuration filename. Takes precedence over --meshConfigMapName if set (default ) |
—meshConfigMapName <string> | ConfigMap name for Istio mesh configuration, key should be “mesh” (default istio ) | |
—namespace <string> | -n | Config namespace (default )</td></tr><tr><td><code>--serviceaccount <string></code></td><td><code>-s</code></td><td>Service account to link to the service (default `default`)</td></tr><tr><td><code>--valuesFile <string></code></td><td></td><td>Injection values configuration filename. (default ) |
Examples
# Control how meshed pods contact 172.12.23.125 and .126
istioctl experimental add-to-mesh external-service vmhttp 172.12.23.125,172.12.23.126 \
http:9080 tcp:8888 --labels app=test,version=v1 --annotations env=stage --serviceaccount stageAdmin
istioctl experimental add-to-mesh service
istioctl experimental add-to-mesh service restarts pods with the Istio sidecar. Use ‘add-to-mesh’ to test deployments for compatibility with Istio. It can be used instead of namespace-wide auto-injection of sidecars and is especially helpful for compatibility testing.
If your service does not function after using ‘add-to-mesh’ you must re-deploy it and troubleshoot it for Istio compatibility. See https://istio.io/v1.9/docs/ops/deployment/requirements/
See also ‘istioctl experimental remove-from-mesh service’ which does the reverse.
THIS COMMAND IS UNDER ACTIVE DEVELOPMENT AND NOT READY FOR PRODUCTION USE.
istioctl experimental add-to-mesh service <service> [flags]
istioctl experimental add-to-mesh svc <service> [flags]
Flags | Shorthand | Description |
---|---|---|
—context <string> | The name of the kubeconfig context to use (default )</td></tr><tr><td><code>--injectConfigFile <string></code></td><td></td><td>Injection configuration filename. Cannot be used with --injectConfigMapName (default ) | |
—injectConfigMapName <string> | ConfigMap name for Istio sidecar injection, key should be “config”. (default istio-sidecar-injector ) | |
—istioNamespace <string> | -i | Istio system namespace (default istio-system ) |
—kubeconfig <string> | -c | Kubernetes configuration file (default )</td></tr><tr><td><code>--meshConfigFile <string></code></td><td></td><td>Mesh configuration filename. Takes precedence over --meshConfigMapName if set (default ) |
—meshConfigMapName <string> | ConfigMap name for Istio mesh configuration, key should be “mesh” (default istio ) | |
—namespace <string> | -n | Config namespace (default )</td></tr><tr><td><code>--revision <string></code></td><td></td><td>Control plane revision (default ) |
—valuesFile <string> | Injection values configuration filename. (default ``) |
Examples
# Restart all productpage pods with an Istio sidecar
istioctl experimental add-to-mesh service productpage
# Restart all details-v1 pods with an Istio sidecar
istioctl x add-to-mesh svc details-v1
# Restart all ratings-v1 pods with an Istio sidecar
istioctl x add svc ratings-v1
istioctl experimental authz
THIS COMMAND IS UNDER ACTIVE DEVELOPMENT AND NOT READY FOR PRODUCTION USE.
Flags | Shorthand | Description |
---|---|---|
—context <string> | The name of the kubeconfig context to use (default )</td></tr><tr><td><code>--istioNamespace <string></code></td><td><code>-i</code></td><td>Istio system namespace (default `istio-system`)</td></tr><tr><td><code>--kubeconfig <string></code></td><td><code>-c</code></td><td>Kubernetes configuration file (default ) | |
—namespace <string> | -n | Config namespace (default ``) |
istioctl experimental authz check
Check prints the AuthorizationPolicy applied to a pod by directly checking the Envoy configuration of the pod. The command is especially useful for inspecting the policy propagation from Istiod to Envoy and the final AuthorizationPolicy list merged from multiple sources (mesh-level, namespace-level and workload-level).
The command also supports reading from a standalone config dump file with flag -f.
istioctl experimental authz check [<type>/]<name>[.<namespace>] [flags]
Flags | Shorthand | Description |
---|---|---|
—context <string> | The name of the kubeconfig context to use (default )</td></tr><tr><td><code>--file <string></code></td><td><code>-f</code></td><td>The json file with Envoy config dump to be checked (default ) | |
—istioNamespace <string> | -i | Istio system namespace (default istio-system ) |
—kubeconfig <string> | -c | Kubernetes configuration file (default )</td></tr><tr><td><code>--namespace <string></code></td><td><code>-n</code></td><td>Config namespace (default ) |
Examples
# Check AuthorizationPolicy applied to pod httpbin-88ddbcfdd-nt5jb:
istioctl x authz check httpbin-88ddbcfdd-nt5jb
# Check AuthorizationPolicy applied to one pod under a deployment
istioctl proxy-status deployment/productpage-v1
# Check AuthorizationPolicy from Envoy config dump file:
istioctl x authz check -f httpbin_config_dump.json
istioctl experimental config
Configure istioctl defaults
Flags | Shorthand | Description |
---|---|---|
—context <string> | The name of the kubeconfig context to use (default )</td></tr><tr><td><code>--istioNamespace <string></code></td><td><code>-i</code></td><td>Istio system namespace (default `istio-system`)</td></tr><tr><td><code>--kubeconfig <string></code></td><td><code>-c</code></td><td>Kubernetes configuration file (default ) | |
—namespace <string> | -n | Config namespace (default ``) |
Examples
# list configuration parameters
istioctl config list
istioctl experimental config list
List istio configurable defaults
istioctl experimental config list [flags]
Flags | Shorthand | Description |
---|---|---|
—context <string> | The name of the kubeconfig context to use (default )</td></tr><tr><td><code>--istioNamespace <string></code></td><td><code>-i</code></td><td>Istio system namespace (default `istio-system`)</td></tr><tr><td><code>--kubeconfig <string></code></td><td><code>-c</code></td><td>Kubernetes configuration file (default ) | |
—namespace <string> | -n | Config namespace (default ``) |
istioctl experimental create-remote-secret
Create a secret with credentials to allow Istio to access remote Kubernetes apiservers
istioctl experimental create-remote-secret [flags]
Flags | Shorthand | Description |
---|---|---|
—auth-plugin-config <stringToString> | Authenticator plug-in configuration. —auth-type=plugin must be set with this option (default [] ) | |
—auth-plugin-name <string> | Authenticator plug-in name. —auth-type=plugin must be set with this option (default )</td></tr><tr><td><code>--auth-type <RemoteSecretAuthType></code></td><td></td><td>Type of authentication to use. supported values = [bearer-token plugin] (default `bearer-token`)</td></tr><tr><td><code>--context <string></code></td><td></td><td>The name of the kubeconfig context to use (default ) | |
—create-service-account | If true, the service account needed for creating the remote secret will be created if it doesn’t exist. | |
—istioNamespace <string> | -i | Istio system namespace (default istio-system ) |
—kubeconfig <string> | -c | Kubernetes configuration file (default )</td></tr><tr><td><code>--manifests <string></code></td><td><code>-d</code></td><td>Specify a path to a directory of charts and profiles (e.g. ~/Downloads/istio-1.9.0/manifests) or release tar URL (e.g. https://github.com/istio/istio/releases/download/1.9.0/istio-1.9.0-linux-amd64.tar.gz). (default ) |
—name <string> | Name of the local cluster whose credentials are stored in the secret. If a name is not specified the kube-system namespace’s UUID of the local cluster will be used. (default )</td></tr><tr><td><code>--namespace <string></code></td><td><code>-n</code></td><td>Config namespace (default ) | |
—server <string> | The address and port of the Kubernetes API server. (default )</td></tr><tr><td><code>--service-account <string></code></td><td></td><td>Create a secret with this service account's credentials. Use "istio-reader-service-account" as default value if --type is "remote", use "istiod-service-account" as default value if --type is "config". (default ) | |
—type <SecretType> | Type of the generated secret. supported values = [remote config] (default remote ) |
Examples
# Create a secret to access cluster c0's apiserver and install it in cluster c1.
istioctl --kubeconfig=c0.yaml x create-remote-secret --name c0 \
| kubectl --kubeconfig=c1.yaml apply -f -
# Delete a secret that was previously installed in c1
istioctl --kubeconfig=c0.yaml x create-remote-secret --name c0 \
| kubectl --kubeconfig=c1.yaml delete -f -
# Create a secret access a remote cluster with an auth plugin
istioctl --kubeconfig=c0.yaml x create-remote-secret --name c0 --auth-type=plugin --auth-plugin-name=gcp \
| kubectl --kubeconfig=c1.yaml apply -f -
istioctl experimental describe
Describe resource and related Istio configuration
istioctl experimental describe [flags]
istioctl experimental des [flags]
Flags | Shorthand | Description |
---|---|---|
—context <string> | The name of the kubeconfig context to use (default )</td></tr><tr><td><code>--istioNamespace <string></code></td><td><code>-i</code></td><td>Istio system namespace (default `istio-system`)</td></tr><tr><td><code>--kubeconfig <string></code></td><td><code>-c</code></td><td>Kubernetes configuration file (default ) | |
—namespace <string> | -n | Config namespace (default ``) |
istioctl experimental describe pod
Analyzes pod, its Services, DestinationRules, and VirtualServices and reports the configuration objects that affect that pod.
THIS COMMAND IS UNDER ACTIVE DEVELOPMENT AND NOT READY FOR PRODUCTION USE.
istioctl experimental describe pod <pod> [flags]
Flags | Shorthand | Description |
---|---|---|
—context <string> | The name of the kubeconfig context to use (default )</td></tr><tr><td><code>--ignoreUnmeshed</code></td><td></td><td>Suppress warnings for unmeshed pods</td></tr><tr><td><code>--istioNamespace <string></code></td><td><code>-i</code></td><td>Istio system namespace (default `istio-system`)</td></tr><tr><td><code>--kubeconfig <string></code></td><td><code>-c</code></td><td>Kubernetes configuration file (default ) | |
—namespace <string> | -n | Config namespace (default ``) |
Examples
istioctl experimental describe pod productpage-v1-c7765c886-7zzd4
istioctl experimental describe service
Analyzes service, pods, DestinationRules, and VirtualServices and reports the configuration objects that affect that service.
THIS COMMAND IS UNDER ACTIVE DEVELOPMENT AND NOT READY FOR PRODUCTION USE.
istioctl experimental describe service <svc> [flags]
istioctl experimental describe svc <svc> [flags]
Flags | Shorthand | Description |
---|---|---|
—context <string> | The name of the kubeconfig context to use (default )</td></tr><tr><td><code>--ignoreUnmeshed</code></td><td></td><td>Suppress warnings for unmeshed pods</td></tr><tr><td><code>--istioNamespace <string></code></td><td><code>-i</code></td><td>Istio system namespace (default `istio-system`)</td></tr><tr><td><code>--kubeconfig <string></code></td><td><code>-c</code></td><td>Kubernetes configuration file (default ) | |
—namespace <string> | -n | Config namespace (default ``) |
Examples
istioctl experimental describe service productpage
istioctl experimental injector
List sidecar injector and sidecar versions
istioctl experimental injector [flags]
Flags | Shorthand | Description |
---|---|---|
—context <string> | The name of the kubeconfig context to use (default )</td></tr><tr><td><code>--istioNamespace <string></code></td><td><code>-i</code></td><td>Istio system namespace (default `istio-system`)</td></tr><tr><td><code>--kubeconfig <string></code></td><td><code>-c</code></td><td>Kubernetes configuration file (default ) | |
—namespace <string> | -n | Config namespace (default ``) |
Examples
istioctl experimental injector list
istioctl experimental injector list
List sidecar injector and sidecar versions
istioctl experimental injector list [flags]
Flags | Shorthand | Description |
---|---|---|
—context <string> | The name of the kubeconfig context to use (default )</td></tr><tr><td><code>--istioNamespace <string></code></td><td><code>-i</code></td><td>Istio system namespace (default `istio-system`)</td></tr><tr><td><code>--kubeconfig <string></code></td><td><code>-c</code></td><td>Kubernetes configuration file (default ) | |
—namespace <string> | -n | Config namespace (default ``) |
Examples
istioctl experimental injector list
istioctl experimental istiod
A group of commands used to manage istiod configuration
istioctl experimental istiod [flags]
Flags | Shorthand | Description |
---|---|---|
—context <string> | The name of the kubeconfig context to use (default )</td></tr><tr><td><code>--istioNamespace <string></code></td><td><code>-i</code></td><td>Istio system namespace (default `istio-system`)</td></tr><tr><td><code>--kubeconfig <string></code></td><td><code>-c</code></td><td>Kubernetes configuration file (default ) | |
—namespace <string> | -n | Config namespace (default `)</td></tr><tr><td><code>--selector <string></code></td><td><code>-l</code></td><td>label selector (default app=istiod`) |
Examples
# Retrieve information about istiod configuration.
istioctl experimental istiod log
istioctl experimental istiod log
Retrieve or update logging levels of istiod components.
istioctl experimental istiod log [<pod-name>] [--level <scope>:<level>][--stack-trace-level <scope>:<level>]|[-r|--reset]|[--output|-o short|yaml] [flags]
istioctl experimental istiod l [<pod-name>] [--level <scope>:<level>][--stack-trace-level <scope>:<level>]|[-r|--reset]|[--output|-o short|yaml] [flags]
Flags | Shorthand | Description |
---|---|---|
—context <string> | The name of the kubeconfig context to use (default )</td></tr><tr><td><code>--ctrlz_port <int></code></td><td></td><td>ControlZ port (default `9876`)</td></tr><tr><td><code>--istioNamespace <string></code></td><td><code>-i</code></td><td>Istio system namespace (default `istio-system`)</td></tr><tr><td><code>--kubeconfig <string></code></td><td><code>-c</code></td><td>Kubernetes configuration file (default ) | |
—level <string> | Comma-separated list of output logging level for scopes in format <scope>:<level>[,<scope>:<level>,…]Possible values for <level>: none, error, warn, info, debug (default )</td></tr><tr><td><code>--namespace <string></code></td><td><code>-n</code></td><td>Config namespace (default ) | |
—output <string> | -o | Output format: one of json|short (default short ) |
—reset | -r | Reset levels to default value. (info) |
—selector <string> | -l | label selector (default app=istiod ) |
—stack-trace-level <string> | Comma-separated list of stack trace level for scopes in format <scope>:<stack-trace-level>[,<scope>:<stack-trace-level>,…] Possible values for <stack-trace-level>: none, error, warn, info, debug (default ``) |
Examples
# Retrieve information about istiod logging levels.
istioctl experimental istiod log
# Retrieve information about istiod logging levels on a specific control plane pod.
istioctl experimental istiod l istiod-5c868d8bdd-pmvgg
# Update levels of the specified loggers.
istioctl x istiod log --level ads:debug,authorization:debug
# Reset levels of all the loggers to default value (info).
istioctl x istiod log -r
istioctl experimental kube-uninject
kube-uninject is used to prevent Istio from adding a sidecar and also provides the inverse of “istioctl kube-inject -f”.
istioctl experimental kube-uninject [flags]
Flags | Shorthand | Description |
---|---|---|
—context <string> | The name of the kubeconfig context to use (default )</td></tr><tr><td><code>--filename <string></code></td><td><code>-f</code></td><td>Input Kubernetes resource filename (default ) | |
—istioNamespace <string> | -i | Istio system namespace (default istio-system ) |
—kubeconfig <string> | -c | Kubernetes configuration file (default )</td></tr><tr><td><code>--namespace <string></code></td><td><code>-n</code></td><td>Config namespace (default ) |
—output <string> | -o | Modified output Kubernetes resource filename (default ``) |
Examples
# Update resources before applying.
kubectl apply -f <(istioctl experimental kube-uninject -f <resource.yaml>)
# Create a persistent version of the deployment by removing Envoy sidecar.
istioctl experimental kube-uninject -f deployment.yaml -o deployment-uninjected.yaml
# Update an existing deployment.
kubectl get deployment -o yaml | istioctl experimental kube-uninject -f - | kubectl apply -f -
istioctl experimental metrics
Prints the metrics for the specified service(s) when running in Kubernetes.
This command finds a Prometheus pod running in the specified istio system namespace. It then executes a series of queries per requested workload to find the following top-level workload metrics: total requests per second, error rate, and request latency at p50, p90, and p99 percentiles. The query results are printed to the console, organized by workload name.
All metrics returned are from server-side reports. This means that latencies and error rates are from the perspective of the service itself and not of an individual client (or aggregate set of clients). Rates and latencies are calculated over a time interval of 1 minute.
istioctl experimental metrics <workload name>...
istioctl experimental m <workload name>...
Flags | Shorthand | Description |
---|---|---|
—context <string> | The name of the kubeconfig context to use (default )</td></tr><tr><td><code>--istioNamespace <string></code></td><td><code>-i</code></td><td>Istio system namespace (default `istio-system`)</td></tr><tr><td><code>--kubeconfig <string></code></td><td><code>-c</code></td><td>Kubernetes configuration file (default ) | |
—namespace <string> | -n | Config namespace (default ``) |
Examples
# Retrieve workload metrics for productpage-v1 workload
istioctl experimental metrics productpage-v1
# Retrieve workload metrics for various services in the different namespaces
istioctl experimental metrics productpage-v1.foo reviews-v1.bar ratings-v1.baz
istioctl experimental precheck
precheck inspects a Kubernetes cluster for Istio install requirements.
istioctl experimental precheck [-f <deployment or istio operator file>] [flags]
Flags | Shorthand | Description |
---|---|---|
—context <string> | The name of the kubeconfig context to use (default )</td></tr><tr><td><code>--filename <stringSlice></code></td><td><code>-f</code></td><td>Istio YAML installation file. (default `[]`)</td></tr><tr><td><code>--istioNamespace <string></code></td><td><code>-i</code></td><td>Istio system namespace (default `istio-system`)</td></tr><tr><td><code>--kubeconfig <string></code></td><td><code>-c</code></td><td>Kubernetes configuration file (default ) | |
—namespace <string> | -n | Config namespace (default )</td></tr><tr><td><code>--recursive</code></td><td><code>-R</code></td><td>Process the directory used in -f, --filename recursively. Useful when you want to manage related manifests organized within the same directory.</td></tr><tr><td><code>--revision <string></code></td><td></td><td>Control plane revision (default ) |
Examples
# Verify that Istio can be installed
istioctl experimental precheck
# Verify the deployment matches a custom Istio deployment configuration
istioctl x precheck --set profile=demo
# Verify the deployment matches the Istio Operator deployment definition
istioctl x precheck -f iop.yaml
istioctl experimental proxy-status
Retrieves last sent and last acknowledged xDS sync from Istiod to each Envoy in the mesh
istioctl experimental proxy-status [<type>/]<name>[.<namespace>] [flags]
istioctl experimental ps [<type>/]<name>[.<namespace>] [flags]
Flags | Shorthand | Description |
---|---|---|
—authority <string> | XDS Subject Alternative Name (for example istiod.istio-system.svc) (default )</td></tr><tr><td><code>--cert-dir <string></code></td><td></td><td>XDS Endpoint certificate directory (default ) | |
—context <string> | The name of the kubeconfig context to use (default )</td></tr><tr><td><code>--insecure</code></td><td></td><td>Skip server certificate and domain verification. (NOT SECURE!)</td></tr><tr><td><code>--istioNamespace <string></code></td><td><code>-i</code></td><td>Istio system namespace (default `istio-system`)</td></tr><tr><td><code>--kubeconfig <string></code></td><td><code>-c</code></td><td>Kubernetes configuration file (default ) | |
—namespace <string> | -n | Config namespace (default )</td></tr><tr><td><code>--plaintext</code></td><td></td><td>Use plain-text HTTP/2 when connecting to server (no TLS).</td></tr><tr><td><code>--revision <string></code></td><td></td><td>Control plane revision (default ) |
—timeout <duration> | The duration to wait before failing (default 30s ) | |
—xds-address <string> | XDS Endpoint (default )</td></tr><tr><td><code>--xds-label <string></code></td><td></td><td>Istiod pod label selector (default ) | |
—xds-port <int> | Istiod pod port (default 15012 ) |
Examples
# Retrieve sync status for all Envoys in a mesh
istioctl x proxy-status
# Retrieve sync diff for a single Envoy and Istiod
istioctl x proxy-status istio-egressgateway-59585c5b9c-ndc59.istio-system
# SECURITY OPTIONS
# Retrieve proxy status information directly from the control plane, using token security
# (This is the usual way to get the proxy-status with an out-of-cluster control plane.)
istioctl x ps --xds-address istio.cloudprovider.example.com:15012
# Retrieve proxy status information via Kubernetes config, using token security
# (This is the usual way to get the proxy-status with an in-cluster control plane.)
istioctl x proxy-status
# Retrieve proxy status information directly from the control plane, using RSA certificate security
# (Certificates must be obtained before this step. The --cert-dir flag lets istioctl bypass the Kubernetes API server.)
istioctl x ps --xds-address istio.example.com:15012 --cert-dir ~/.istio-certs
# Retrieve proxy status information via XDS from specific control plane in multi-control plane in-cluster configuration
# (Select a specific control plane in an in-cluster canary Istio configuration.)
istioctl x ps --xds-label istio.io/rev=default
istioctl experimental remove-from-mesh
‘istioctl experimental remove-from-mesh’ restarts pods without an Istio sidecar or removes external service access configuration. Use ‘remove-from-mesh’ to quickly test uninjected behavior as part of compatibility troubleshooting. The ‘add-to-mesh’ command can be used to add or restore the sidecar.
THIS COMMAND IS UNDER ACTIVE DEVELOPMENT AND NOT READY FOR PRODUCTION USE.
istioctl experimental remove-from-mesh [flags]
istioctl experimental rm [flags]
Flags | Shorthand | Description |
---|---|---|
—context <string> | The name of the kubeconfig context to use (default )</td></tr><tr><td><code>--istioNamespace <string></code></td><td><code>-i</code></td><td>Istio system namespace (default `istio-system`)</td></tr><tr><td><code>--kubeconfig <string></code></td><td><code>-c</code></td><td>Kubernetes configuration file (default ) | |
—namespace <string> | -n | Config namespace (default ``) |
Examples
# Restart all productpage pods without an Istio sidecar
istioctl experimental remove-from-mesh service productpage
# Restart all details-v1 pods without an Istio sidecar
istioctl x rm service details-v1
# Restart all ratings-v1 pods without an Istio sidecar
istioctl x rm deploy ratings-v1
istioctl experimental remove-from-mesh deployment
‘istioctl experimental remove-from-mesh deployment’ restarts pods with the Istio sidecar un-injected. ‘remove-from-mesh’ is a compatibility troubleshooting tool.
THIS COMMAND IS UNDER ACTIVE DEVELOPMENT AND NOT READY FOR PRODUCTION USE.
istioctl experimental remove-from-mesh deployment <deployment> [flags]
istioctl experimental remove-from-mesh deploy <deployment> [flags]
istioctl experimental remove-from-mesh dep <deployment> [flags]
Flags | Shorthand | Description |
---|---|---|
—context <string> | The name of the kubeconfig context to use (default )</td></tr><tr><td><code>--istioNamespace <string></code></td><td><code>-i</code></td><td>Istio system namespace (default `istio-system`)</td></tr><tr><td><code>--kubeconfig <string></code></td><td><code>-c</code></td><td>Kubernetes configuration file (default ) | |
—namespace <string> | -n | Config namespace (default ``) |
Examples
# Restart all productpage-v1 pods without an Istio sidecar
istioctl experimental remove-from-mesh deployment productpage-v1
# Restart all details-v1 pods without an Istio sidecar
istioctl x remove-from-mesh deploy details-v1
# Restart all ratings-v1 pods without an Istio sidecar
istioctl x rm dep ratings-v1
istioctl experimental remove-from-mesh external-service
‘istioctl experimental remove-from-mesh external-service’ removes the ServiceEntry and the Kubernetes Service for the specified external service (e.g. services running on a VM) from Istio service mesh. The typical usage scenario is Mesh Expansion on VMs.
THIS COMMAND IS UNDER ACTIVE DEVELOPMENT AND NOT READY FOR PRODUCTION USE.
istioctl experimental remove-from-mesh external-service <svcname> [flags]
istioctl experimental remove-from-mesh es <svcname> [flags]
Flags | Shorthand | Description |
---|---|---|
—context <string> | The name of the kubeconfig context to use (default )</td></tr><tr><td><code>--istioNamespace <string></code></td><td><code>-i</code></td><td>Istio system namespace (default `istio-system`)</td></tr><tr><td><code>--kubeconfig <string></code></td><td><code>-c</code></td><td>Kubernetes configuration file (default ) | |
—namespace <string> | -n | Config namespace (default ``) |
Examples
# Remove "vmhttp" service entry rules
istioctl experimental remove-from-mesh external-service vmhttp
# Remove "vmhttp" service entry rules
istioctl x remove-from-mesh es vmhttp
# Remove "vmhttp" service entry rules
istioctl x rm es vmhttp
istioctl experimental remove-from-mesh service
‘istioctl experimental remove-from-mesh service’ restarts pods with the Istio sidecar un-injected. ‘remove-from-mesh’ is a compatibility troubleshooting tool.
THIS COMMAND IS UNDER ACTIVE DEVELOPMENT AND NOT READY FOR PRODUCTION USE.
istioctl experimental remove-from-mesh service <service> [flags]
istioctl experimental remove-from-mesh svc <service> [flags]
Flags | Shorthand | Description |
---|---|---|
—context <string> | The name of the kubeconfig context to use (default )</td></tr><tr><td><code>--istioNamespace <string></code></td><td><code>-i</code></td><td>Istio system namespace (default `istio-system`)</td></tr><tr><td><code>--kubeconfig <string></code></td><td><code>-c</code></td><td>Kubernetes configuration file (default ) | |
—namespace <string> | -n | Config namespace (default ``) |
Examples
# Restart all productpage pods without an Istio sidecar
istioctl experimental remove-from-mesh service productpage
# Restart all details-v1 pods without an Istio sidecar
istioctl x remove-from-mesh svc details-v1
# Restart all ratings-v1 pods without an Istio sidecar
istioctl x rm svc ratings-v1
istioctl experimental uninstall
The uninstall command uninstalls Istio from a cluster
istioctl experimental uninstall [flags]
Flags | Shorthand | Description |
---|---|---|
—context <string> | The name of the kubeconfig context to use (default )</td></tr><tr><td><code>--filename <string></code></td><td><code>-f</code></td><td>The filename of the IstioOperator CR. (default ) | |
—force | Proceed even with validation errors. | |
—istioNamespace <string> | -i | Istio system namespace (default istio-system ) |
—kubeconfig <string> | -c | Kubernetes configuration file (default )</td></tr><tr><td><code>--manifests <string></code></td><td><code>-d</code></td><td>Specify a path to a directory of charts and profiles (e.g. ~/Downloads/istio-1.9.0/manifests) or release tar URL (e.g. https://github.com/istio/istio/releases/download/1.9.0/istio-1.9.0-linux-amd64.tar.gz). (default ) |
—namespace <string> | -n | Config namespace (default )</td></tr><tr><td><code>--purge</code></td><td></td><td>Delete all Istio related sources for all versions</td></tr><tr><td><code>--revision <string></code></td><td><code>-r</code></td><td>Target control plane revision for the command. (default ) |
—set <stringArray> | -s | Override an IstioOperator value, e.g. to choose a profile (—set profile=demo), enable or disable components (—set components.policy.enabled=true), or override Istio settings (—set meshConfig.enableTracing=true). See documentation for more info:https://istio.io/v1.9/docs/reference/config/istio.operator.v1alpha1/#IstioOperatorSpec (default [] ) |
—skip-confirmation | -y | The skipConfirmation determines whether the user is prompted for confirmation. If set to true, the user is not prompted and a Yes response is assumed in all cases. |
—verbose | -v | Verbose output. |
Examples
# Uninstall a single control plane by revision
istioctl x uninstall --revision foo
# Uninstall a single control plane by iop file
istioctl x uninstall -f iop.yaml
# Uninstall all control planes and shared resources
istioctl x uninstall --purge
istioctl experimental version
Prints out build version information
istioctl experimental version [flags]
Flags | Shorthand | Description |
---|---|---|
—authority <string> | XDS Subject Alternative Name (for example istiod.istio-system.svc) (default )</td></tr><tr><td><code>--cert-dir <string></code></td><td></td><td>XDS Endpoint certificate directory (default ) | |
—context <string> | The name of the kubeconfig context to use (default )</td></tr><tr><td><code>--insecure</code></td><td></td><td>Skip server certificate and domain verification. (NOT SECURE!)</td></tr><tr><td><code>--istioNamespace <string></code></td><td><code>-i</code></td><td>Istio system namespace (default `istio-system`)</td></tr><tr><td><code>--kubeconfig <string></code></td><td><code>-c</code></td><td>Kubernetes configuration file (default ) | |
—namespace <string> | -n | Config namespace (default )</td></tr><tr><td><code>--output <string></code></td><td><code>-o</code></td><td>One of 'yaml' or 'json'. (default ) |
—plaintext | Use plain-text HTTP/2 when connecting to server (no TLS). | |
—remote | Use —remote=false to suppress control plane check | |
—revision <string> | Control plane revision (default )</td></tr><tr><td><code>--short</code></td><td><code>-s</code></td><td>Use --short=false to generate full version information</td></tr><tr><td><code>--timeout <duration></code></td><td></td><td>The duration to wait before failing (default `30s`)</td></tr><tr><td><code>--xds-address <string></code></td><td></td><td>XDS Endpoint (default ) | |
—xds-label <string> | Istiod pod label selector (default `)</td></tr><tr><td><code>--xds-port <int></code></td><td></td><td>Istiod pod port (default 15012`) |
Examples
# Retrieve version information directly from the control plane, using token security
# (This is the usual way to get the control plane version with an out-of-cluster control plane.)
istioctl x version --xds-address istio.cloudprovider.example.com:15012
# Retrieve version information via Kubernetes config, using token security
# (This is the usual way to get the control plane version with an in-cluster control plane.)
istioctl x version
# Retrieve version information directly from the control plane, using RSA certificate security
# (Certificates must be obtained before this step. The --cert-dir flag lets istioctl bypass the Kubernetes API server.)
istioctl x version --xds-address istio.example.com:15012 --cert-dir ~/.istio-certs
# Retrieve version information via XDS from specific control plane in multi-control plane in-cluster configuration
# (Select a specific control plane in an in-cluster canary Istio configuration.)
istioctl x version --xds-label istio.io/rev=default
istioctl experimental wait
Waits for the specified condition to be true of an Istio resource.
istioctl experimental wait [flags] <type> <name>[.<namespace>]
Flags | Shorthand | Description |
---|---|---|
—context <string> | The name of the kubeconfig context to use (default )</td></tr><tr><td><code>--for <string></code></td><td></td><td>Wait condition, must be 'distribution' or 'delete' (default `distribution`)</td></tr><tr><td><code>--generation <string></code></td><td></td><td>Wait for a specific generation of config to become current, rather than using whatever is latest in Kubernetes (default ) | |
—istioNamespace <string> | -i | Istio system namespace (default istio-system ) |
—kubeconfig <string> | -c | Kubernetes configuration file (default )</td></tr><tr><td><code>--namespace <string></code></td><td><code>-n</code></td><td>Config namespace (default ) |
—revision <string> | Control plane revision (default `)</td></tr><tr><td><code>--threshold <float32></code></td><td></td><td>The ratio of distribution required for success (default 1)</td></tr><tr><td><code>--timeout <duration></code></td><td></td><td>The duration to wait before failing (default 30s`) |
Examples
# Wait until the bookinfo virtual service has been distributed to all proxies in the mesh
istioctl experimental wait --for=distribution virtualservice bookinfo.default
# Wait until 99% of the proxies receive the distribution, timing out after 5 minutes
istioctl experimental wait --for=distribution --threshold=.99 --timeout=300 virtualservice bookinfo.default
istioctl experimental workload
Commands to assist in configuring and deploying workloads running on VMs and other non-Kubernetes environments
Flags | Shorthand | Description |
---|---|---|
—context <string> | The name of the kubeconfig context to use (default )</td></tr><tr><td><code>--istioNamespace <string></code></td><td><code>-i</code></td><td>Istio system namespace (default `istio-system`)</td></tr><tr><td><code>--kubeconfig <string></code></td><td><code>-c</code></td><td>Kubernetes configuration file (default ) | |
—namespace <string> | -n | Config namespace (default ``) |
Examples
# workload group yaml generation
workload group create
# workload entry configuration generation
workload entry configure
istioctl experimental workload entry
Commands dealing with WorkloadEntry resources
Flags | Shorthand | Description |
---|---|---|
—context <string> | The name of the kubeconfig context to use (default )</td></tr><tr><td><code>--istioNamespace <string></code></td><td><code>-i</code></td><td>Istio system namespace (default `istio-system`)</td></tr><tr><td><code>--kubeconfig <string></code></td><td><code>-c</code></td><td>Kubernetes configuration file (default ) | |
—namespace <string> | -n | Config namespace (default ``) |
Examples
entry configure -f workloadgroup.yaml -o outputDir
istioctl experimental workload entry configure
Generates all the required configuration files for workload instance on a VM or non-Kubernetes environment from a WorkloadGroup artifact. This includes a MeshConfig resource, the cluster.env file, and necessary certificates and security tokens. Configure requires either the WorkloadGroup artifact path or its location on the API server.
istioctl experimental workload entry configure [flags]
Flags | Shorthand | Description |
---|---|---|
—autoregister | Creates a WorkloadEntry upon connection to istiod (if enabled in pilot). | |
—capture-dns | Enables the capture of outgoing DNS packets on port 53, redirecting to istio-agent | |
—clusterID <string> | The ID used to identify the cluster (default Kubernetes ) | |
—context <string> | The name of the kubeconfig context to use (default )</td></tr><tr><td><code>--file <string></code></td><td><code>-f</code></td><td>filename of the WorkloadGroup artifact. Leave this field empty if using the API server (default ) | |
—ingressIP <string> | IP address of the ingress gateway (default )</td></tr><tr><td><code>--ingressService <string></code></td><td></td><td>Name of the Service to be used as the ingress gateway, in the format <service>.<namespace>. If no namespace is provided, the default istio-system namespace will be used. (default `istio-eastwestgateway`)</td></tr><tr><td><code>--istioNamespace <string></code></td><td><code>-i</code></td><td>Istio system namespace (default `istio-system`)</td></tr><tr><td><code>--kubeconfig <string></code></td><td><code>-c</code></td><td>Kubernetes configuration file (default ) | |
—name <string> | The name of the workload group (default )</td></tr><tr><td><code>--namespace <string></code></td><td><code>-n</code></td><td>Config namespace (default ) | |
—output <string> | -o | Output directory for generated files (default )</td></tr><tr><td><code>--revision <string></code></td><td></td><td>Control plane revision (default ) |
—tokenDuration <int> | The token duration in seconds (default: 1 hour) (default 3600 ) |
Examples
# configure example using a local WorkloadGroup artifact
configure -f workloadgroup.yaml -o config
# configure example using the API server
configure --name foo --namespace bar -o config
istioctl experimental workload group
Commands dealing with WorkloadGroup resources
Flags | Shorthand | Description |
---|---|---|
—context <string> | The name of the kubeconfig context to use (default )</td></tr><tr><td><code>--istioNamespace <string></code></td><td><code>-i</code></td><td>Istio system namespace (default `istio-system`)</td></tr><tr><td><code>--kubeconfig <string></code></td><td><code>-c</code></td><td>Kubernetes configuration file (default ) | |
—namespace <string> | -n | Config namespace (default ``) |
Examples
group create --name foo --namespace bar --labels app=foobar
istioctl experimental workload group create
Creates a WorkloadGroup resource that provides a template for associated WorkloadEntries. The default output is serialized YAML, which can be piped into ‘kubectl apply -f -‘ to send the artifact to the API Server.
istioctl experimental workload group create [flags]
Flags | Shorthand | Description |
---|---|---|
—annotations <stringSlice> | -a | The annotations to apply to the workload instances (default [] ) |
—context <string> | The name of the kubeconfig context to use (default )</td></tr><tr><td><code>--istioNamespace <string></code></td><td><code>-i</code></td><td>Istio system namespace (default `istio-system`)</td></tr><tr><td><code>--kubeconfig <string></code></td><td><code>-c</code></td><td>Kubernetes configuration file (default ) | |
—labels <stringSlice> | -l | The labels to apply to the workload instances; e.g. -l env=prod,vers=2 (default [] ) |
—name <string> | The name of the workload group (default )</td></tr><tr><td><code>--namespace <string></code></td><td><code>-n</code></td><td>Config namespace (default ) | |
—ports <stringSlice> | -p | The incoming ports exposed by the workload instance (default [] ) |
—serviceAccount <string> | -s | The service identity to associate with the workload instances (default default ) |
Examples
create --name foo --namespace bar --labels app=foo,bar=baz --ports grpc=3550,http=8080 --annotations annotation=foobar --serviceAccount sa
istioctl install
The install command generates an Istio install manifest and applies it to a cluster.
istioctl install [flags]
istioctl apply [flags]
Flags | Shorthand | Description |
---|---|---|
—charts <string> | Deprecated, use —manifests instead. (default )</td></tr><tr><td><code>--context <string></code></td><td></td><td>The name of the kubeconfig context to use (default ) | |
—dry-run | Console/log output only, make no changes. | |
—filename <stringSlice> | -f | Path to file containing IstioOperator custom resource This flag can be specified multiple times to overlay multiple files. Multiple files are overlaid in left to right order. (default [] ) |
—force | Proceed even with validation errors. | |
—istioNamespace <string> | -i | Istio system namespace (default istio-system ) |
—kubeconfig <string> | -c | Kubernetes configuration file (default )</td></tr><tr><td><code>--manifests <string></code></td><td><code>-d</code></td><td>Specify a path to a directory of charts and profiles (e.g. ~/Downloads/istio-1.9.0/manifests) or release tar URL (e.g. https://github.com/istio/istio/releases/download/1.9.0/istio-1.9.0-linux-amd64.tar.gz). (default ) |
—namespace <string> | -n | Config namespace (default )</td></tr><tr><td><code>--readiness-timeout <duration></code></td><td></td><td>Maximum time to wait for Istio resources in each component to be ready. (default `5m0s`)</td></tr><tr><td><code>--revision <string></code></td><td><code>-r</code></td><td>Target control plane revision for the command. (default ) |
—set <stringArray> | -s | Override an IstioOperator value, e.g. to choose a profile (—set profile=demo), enable or disable components (—set components.policy.enabled=true), or override Istio settings (—set meshConfig.enableTracing=true). See documentation for more info:https://istio.io/v1.9/docs/reference/config/istio.operator.v1alpha1/#IstioOperatorSpec (default [] ) |
—skip-confirmation | -y | The skipConfirmation determines whether the user is prompted for confirmation. If set to true, the user is not prompted and a Yes response is assumed in all cases. |
—verify | Verify the Istio control plane after installation/in-place upgrade |
Examples
# Apply a default Istio installation
istioctl install
# Enable Tracing
istioctl install --set meshConfig.enableTracing=true
# Generate the demo profile and don't wait for confirmation
istioctl install --set profile=demo --skip-confirmation
# To override a setting that includes dots, escape them with a backslash (\). Your shell may require enclosing quotes.
istioctl install --set "values.sidecarInjectorWebhook.injectedAnnotations.container\.apparmor\.security\.beta\.kubernetes\.io/istio-proxy=runtime/default"
istioctl kube-inject
kube-inject manually injects the Envoy sidecar into Kubernetes workloads. Unsupported resources are left unmodified so it is safe to run kube-inject over a single file that contains multiple Service, ConfigMap, Deployment, etc. definitions for a complex application. It’s best to do this when the resource is initially created.
k8s.io/docs/concepts/workloads/pods/pod-overview/#pod-templates is updated for Job, DaemonSet, ReplicaSet, Pod and Deployment YAML resource documents. Support for additional pod-based resource types can be added as necessary.
The Istio project is continually evolving so the Istio sidecar configuration may change unannounced. When in doubt re-run istioctl kube-inject on deployments to get the most up-to-date changes.
istioctl kube-inject [flags]
Flags | Shorthand | Description |
---|---|---|
—context <string> | The name of the kubeconfig context to use (default )</td></tr><tr><td><code>--filename <string></code></td><td><code>-f</code></td><td>Input Kubernetes resource filename (default ) | |
—injectConfigFile <string> | Injection configuration filename. Cannot be used with —injectConfigMapName (default )</td></tr><tr><td><code>--injectConfigMapName <string></code></td><td></td><td>ConfigMap name for Istio sidecar injection, key should be "config". (default `istio-sidecar-injector`)</td></tr><tr><td><code>--istioNamespace <string></code></td><td><code>-i</code></td><td>Istio system namespace (default `istio-system`)</td></tr><tr><td><code>--kubeconfig <string></code></td><td><code>-c</code></td><td>Kubernetes configuration file (default ) | |
—meshConfigFile <string> | Mesh configuration filename. Takes precedence over —meshConfigMapName if set (default )</td></tr><tr><td><code>--meshConfigMapName <string></code></td><td></td><td>ConfigMap name for Istio mesh configuration, key should be "mesh" (default `istio`)</td></tr><tr><td><code>--namespace <string></code></td><td><code>-n</code></td><td>Config namespace (default ) | |
—output <string> | -o | Modified output Kubernetes resource filename (default )</td></tr><tr><td><code>--revision <string></code></td><td></td><td>Control plane revision (default ) |
—valuesFile <string> | injection values configuration filename. (default ``) |
Examples
# Update resources on the fly before applying.
kubectl apply -f <(istioctl kube-inject -f <resource.yaml>)
# Create a persistent version of the deployment with Envoy sidecar injected.
istioctl kube-inject -f deployment.yaml -o deployment-injected.yaml
# Update an existing deployment.
kubectl get deployment -o yaml | istioctl kube-inject -f - | kubectl apply -f -
# Capture cluster configuration for later use with kube-inject
kubectl -n istio-system get cm istio-sidecar-injector -o jsonpath="{.data.config}" > /tmp/inj-template.tmpl
kubectl -n istio-system get cm istio -o jsonpath="{.data.mesh}" > /tmp/mesh.yaml
kubectl -n istio-system get cm istio-sidecar-injector -o jsonpath="{.data.values}" > /tmp/values.json
# Use kube-inject based on captured configuration
istioctl kube-inject -f samples/bookinfo/platform/kube/bookinfo.yaml \
--injectConfigFile /tmp/inj-template.tmpl \
--meshConfigFile /tmp/mesh.yaml \
--valuesFile /tmp/values.json
istioctl manifest
The manifest command generates and diffs Istio manifests.
Flags | Shorthand | Description |
---|---|---|
—context <string> | The name of the kubeconfig context to use (default )</td></tr><tr><td><code>--dry-run</code></td><td></td><td>Console/log output only, make no changes.</td></tr><tr><td><code>--istioNamespace <string></code></td><td><code>-i</code></td><td>Istio system namespace (default `istio-system`)</td></tr><tr><td><code>--kubeconfig <string></code></td><td><code>-c</code></td><td>Kubernetes configuration file (default ) | |
—namespace <string> | -n | Config namespace (default ``) |
istioctl manifest diff
The diff subcommand compares manifests from two files or directories.
istioctl manifest diff <file|dir> <file|dir> [flags]
Flags | Shorthand | Description |
---|---|---|
—context <string> | The name of the kubeconfig context to use (default )</td></tr><tr><td><code>--directory</code></td><td><code>-r</code></td><td>Compare directory.</td></tr><tr><td><code>--dry-run</code></td><td></td><td>Console/log output only, make no changes.</td></tr><tr><td><code>--ignore <string></code></td><td></td><td>Ignore all listed items during comparison, using the same list format as selectResources. (default ) | |
—istioNamespace <string> | -i | Istio system namespace (default istio-system ) |
—kubeconfig <string> | -c | Kubernetes configuration file (default )</td></tr><tr><td><code>--namespace <string></code></td><td><code>-n</code></td><td>Config namespace (default ) |
—rename <string> | Rename resources before comparison. The format of each renaming pair is A->B, all renaming pairs are comma separated. e.g. Service::istiod->Service::istio-control - rename istiod service into istio-control (default `)</td></tr><tr><td><code>--select <string></code></td><td></td><td>Constrain the list of resources to compare to only the ones in this list, ignoring all others. The format of each list item is "::" and the items are comma separated. The "*" character represents wildcard selection. e.g. Deployment:istio-system:* - compare all deployments in istio-system namespace Service:*:istiod - compare Services called "istiod" in all namespaces (default ::`) | |
—verbose | -v | Verbose output. |
istioctl manifest generate
The generate subcommand generates an Istio install manifest and outputs to the console by default.
istioctl manifest generate [flags]
Flags | Shorthand | Description |
---|---|---|
—charts <string> | Deprecated, use —manifests instead. (default )</td></tr><tr><td><code>--component <stringSlice></code></td><td></td><td>Specify which component to generate manifests for. (default `[]`)</td></tr><tr><td><code>--context <string></code></td><td></td><td>The name of the kubeconfig context to use (default ) | |
—dry-run | Console/log output only, make no changes. | |
—filename <stringSlice> | -f | Path to file containing IstioOperator custom resource This flag can be specified multiple times to overlay multiple files. Multiple files are overlaid in left to right order. (default [] ) |
—force | Proceed even with validation errors. | |
—istioNamespace <string> | -i | Istio system namespace (default istio-system ) |
—kubeconfig <string> | -c | Kubernetes configuration file (default )</td></tr><tr><td><code>--manifests <string></code></td><td><code>-d</code></td><td>Specify a path to a directory of charts and profiles (e.g. ~/Downloads/istio-1.9.0/manifests) or release tar URL (e.g. https://github.com/istio/istio/releases/download/1.9.0/istio-1.9.0-linux-amd64.tar.gz). (default ) |
—namespace <string> | -n | Config namespace (default )</td></tr><tr><td><code>--output <string></code></td><td><code>-o</code></td><td>Manifest output directory path. (default ) |
—revision <string> | -r | Target control plane revision for the command. (default `)</td></tr><tr><td><code>--set <stringArray></code></td><td><code>-s</code></td><td>Override an IstioOperator value, e.g. to choose a profile (--set profile=demo), enable or disable components (--set components.policy.enabled=true), or override Istio settings (--set meshConfig.enableTracing=true). See documentation for more info:https://istio.io/v1.9/docs/reference/config/istio.operator.v1alpha1/#IstioOperatorSpec (default []`) |
Examples
# Generate a default Istio installation
istioctl manifest generate
# Enable Tracing
istioctl manifest generate --set meshConfig.enableTracing=true
# Generate the demo profile
istioctl manifest generate --set profile=demo
# To override a setting that includes dots, escape them with a backslash (\). Your shell may require enclosing quotes.
istioctl manifest generate --set "values.sidecarInjectorWebhook.injectedAnnotations.container\.apparmor\.security\.beta\.kubernetes\.io/istio-proxy=runtime/default"
istioctl manifest install
The install command generates an Istio install manifest and applies it to a cluster.
istioctl manifest install [flags]
istioctl manifest apply [flags]
Flags | Shorthand | Description |
---|---|---|
—charts <string> | Deprecated, use —manifests instead. (default )</td></tr><tr><td><code>--context <string></code></td><td></td><td>The name of the kubeconfig context to use (default ) | |
—dry-run | Console/log output only, make no changes. | |
—filename <stringSlice> | -f | Path to file containing IstioOperator custom resource This flag can be specified multiple times to overlay multiple files. Multiple files are overlaid in left to right order. (default [] ) |
—force | Proceed even with validation errors. | |
—istioNamespace <string> | -i | Istio system namespace (default istio-system ) |
—kubeconfig <string> | -c | Kubernetes configuration file (default )</td></tr><tr><td><code>--manifests <string></code></td><td><code>-d</code></td><td>Specify a path to a directory of charts and profiles (e.g. ~/Downloads/istio-1.9.0/manifests) or release tar URL (e.g. https://github.com/istio/istio/releases/download/1.9.0/istio-1.9.0-linux-amd64.tar.gz). (default ) |
—namespace <string> | -n | Config namespace (default )</td></tr><tr><td><code>--readiness-timeout <duration></code></td><td></td><td>Maximum time to wait for Istio resources in each component to be ready. (default `5m0s`)</td></tr><tr><td><code>--revision <string></code></td><td><code>-r</code></td><td>Target control plane revision for the command. (default ) |
—set <stringArray> | -s | Override an IstioOperator value, e.g. to choose a profile (—set profile=demo), enable or disable components (—set components.policy.enabled=true), or override Istio settings (—set meshConfig.enableTracing=true). See documentation for more info:https://istio.io/v1.9/docs/reference/config/istio.operator.v1alpha1/#IstioOperatorSpec (default [] ) |
—skip-confirmation | -y | The skipConfirmation determines whether the user is prompted for confirmation. If set to true, the user is not prompted and a Yes response is assumed in all cases. |
—verify | Verify the Istio control plane after installation/in-place upgrade |
Examples
# Apply a default Istio installation
istioctl install
# Enable Tracing
istioctl install --set meshConfig.enableTracing=true
# Generate the demo profile and don't wait for confirmation
istioctl install --set profile=demo --skip-confirmation
# To override a setting that includes dots, escape them with a backslash (\). Your shell may require enclosing quotes.
istioctl install --set "values.sidecarInjectorWebhook.injectedAnnotations.container\.apparmor\.security\.beta\.kubernetes\.io/istio-proxy=runtime/default"
istioctl operator
The operator command installs, dumps, removes and shows the status of the operator controller.
Flags | Shorthand | Description |
---|---|---|
—context <string> | The name of the kubeconfig context to use (default )</td></tr><tr><td><code>--istioNamespace <string></code></td><td><code>-i</code></td><td>Istio system namespace (default `istio-system`)</td></tr><tr><td><code>--kubeconfig <string></code></td><td><code>-c</code></td><td>Kubernetes configuration file (default ) | |
—namespace <string> | -n | Config namespace (default ``) |
istioctl operator dump
The dump subcommand dumps the Istio operator controller manifest.
istioctl operator dump [flags]
Flags | Shorthand | Description |
---|---|---|
—charts <string> | Deprecated, use —manifests instead. (default )</td></tr><tr><td><code>--context <string></code></td><td></td><td>The name of the kubeconfig context to use (default ) | |
—dry-run | Console/log output only, make no changes. | |
—hub <string> | The hub for the operator controller image. (default unknown ) | |
—imagePullSecrets <stringSlice> | The imagePullSecrets are used to pull the operator image from the private registry, could be secret list separated by comma, eg. ‘—imagePullSecrets imagePullSecret1,imagePullSecret2’ (default [] ) | |
—istioNamespace <string> | -i | Istio system namespace (default istio-system ) |
—kubeconfig <string> | -c | Kubernetes configuration file (default )</td></tr><tr><td><code>--manifests <string></code></td><td><code>-d</code></td><td>Specify a path to a directory of charts and profiles (e.g. ~/Downloads/istio-1.9.0/manifests) or release tar URL (e.g. https://github.com/istio/istio/releases/download/1.9.0/istio-1.9.0-linux-amd64.tar.gz). (default ) |
—namespace <string> | -n | Config namespace (default )</td></tr><tr><td><code>--operatorNamespace <string></code></td><td></td><td>The namespace the operator controller is installed into. (default `istio-operator`)</td></tr><tr><td><code>--revision <string></code></td><td><code>-r</code></td><td>Target revision for the operator. (default ) |
—tag <string> | The tag for the operator controller image. (default unknown ) |
istioctl operator init
The init subcommand installs the Istio operator controller in the cluster.
istioctl operator init [flags]
Flags | Shorthand | Description |
---|---|---|
—charts <string> | Deprecated, use —manifests instead. (default )</td></tr><tr><td><code>--context <string></code></td><td></td><td>The name of the kubeconfig context to use (default ) | |
—dry-run | Console/log output only, make no changes. | |
—filename <string> | -f | Path to file containing IstioOperator custom resource This flag can be specified multiple times to overlay multiple files. Multiple files are overlaid in left to right order. (default )</td></tr><tr><td><code>--hub <string></code></td><td></td><td>The hub for the operator controller image. (default `unknown`)</td></tr><tr><td><code>--imagePullSecrets <stringSlice></code></td><td></td><td>The imagePullSecrets are used to pull the operator image from the private registry, could be secret list separated by comma, eg. '--imagePullSecrets imagePullSecret1,imagePullSecret2' (default `[]`)</td></tr><tr><td><code>--istioNamespace <string></code></td><td><code>-i</code></td><td>Istio system namespace (default `istio-system`)</td></tr><tr><td><code>--kubeconfig <string></code></td><td><code>-c</code></td><td>Kubernetes configuration file (default ) |
—manifests <string> | -d | Specify a path to a directory of charts and profiles (e.g. ~/Downloads/istio-1.9.0/manifests) or release tar URL (e.g. https://github.com/istio/istio/releases/download/1.9.0/istio-1.9.0-linux-amd64.tar.gz). (default )</td></tr><tr><td><code>--namespace <string></code></td><td><code>-n</code></td><td>Config namespace (default ) |
—operatorNamespace <string> | The namespace the operator controller is installed into. (default istio-operator ) | |
—revision <string> | -r | Target revision for the operator. (default `)</td></tr><tr><td><code>--tag <string></code></td><td></td><td>The tag for the operator controller image. (default unknown)</td></tr><tr><td><code>--watchedNamespaces <string></code></td><td></td><td>The namespaces the operator controller watches, could be namespace list separated by comma, eg. 'ns1,ns2' (default istio-system`) |
istioctl operator remove
The remove subcommand removes the Istio operator controller from the cluster.
istioctl operator remove [flags]
Flags | Shorthand | Description |
---|---|---|
—context <string> | The name of the kubeconfig context to use (default )</td></tr><tr><td><code>--dry-run</code></td><td></td><td>Console/log output only, make no changes.</td></tr><tr><td><code>--force</code></td><td></td><td>Proceed even with validation errors.</td></tr><tr><td><code>--istioNamespace <string></code></td><td><code>-i</code></td><td>Istio system namespace (default `istio-system`)</td></tr><tr><td><code>--kubeconfig <string></code></td><td><code>-c</code></td><td>Kubernetes configuration file (default ) | |
—namespace <string> | -n | Config namespace (default )</td></tr><tr><td><code>--operatorNamespace <string></code></td><td></td><td>The namespace the operator controller is installed into. (default `istio-operator`)</td></tr><tr><td><code>--revision <string></code></td><td><code>-r</code></td><td>Target revision for the operator. (default ) |
istioctl options
Displays istioctl global options
Flags | Shorthand | Description |
---|---|---|
—context <string> | The name of the kubeconfig context to use (default )</td></tr><tr><td><code>--istioNamespace <string></code></td><td><code>-i</code></td><td>Istio system namespace (default `istio-system`)</td></tr><tr><td><code>--kubeconfig <string></code></td><td><code>-c</code></td><td>Kubernetes configuration file (default ) | |
—namespace <string> | -n | Config namespace (default ``) |
istioctl profile
The profile command lists, dumps or diffs Istio configuration profiles.
Flags | Shorthand | Description |
---|---|---|
—context <string> | The name of the kubeconfig context to use (default )</td></tr><tr><td><code>--dry-run</code></td><td></td><td>Console/log output only, make no changes.</td></tr><tr><td><code>--istioNamespace <string></code></td><td><code>-i</code></td><td>Istio system namespace (default `istio-system`)</td></tr><tr><td><code>--kubeconfig <string></code></td><td><code>-c</code></td><td>Kubernetes configuration file (default ) | |
—namespace <string> | -n | Config namespace (default ``) |
Examples
istioctl profile list
istioctl install --set profile=demo # Use a profile from the list
istioctl profile diff
The diff subcommand displays the differences between two Istio configuration profiles.
istioctl profile diff <profile|file1.yaml> <profile|file2.yaml> [flags]
Flags | Shorthand | Description |
---|---|---|
—charts <string> | Deprecated, use —manifests instead. (default )</td></tr><tr><td><code>--context <string></code></td><td></td><td>The name of the kubeconfig context to use (default ) | |
—dry-run | Console/log output only, make no changes. | |
—istioNamespace <string> | -i | Istio system namespace (default istio-system ) |
—kubeconfig <string> | -c | Kubernetes configuration file (default )</td></tr><tr><td><code>--manifests <string></code></td><td><code>-d</code></td><td>Specify a path to a directory of charts and profiles (e.g. ~/Downloads/istio-1.9.0/manifests) or release tar URL (e.g. https://github.com/istio/istio/releases/download/1.9.0/istio-1.9.0-linux-amd64.tar.gz). (default ) |
—namespace <string> | -n | Config namespace (default ``) |
Examples
# Profile diff by providing yaml files
istioctl profile diff manifests/profiles/default.yaml manifests/profiles/demo.yaml
# Profile diff by providing a profile name
istioctl profile diff default demo
istioctl profile dump
The dump subcommand dumps the values in an Istio configuration profile.
istioctl profile dump [<profile>] [flags]
Flags | Shorthand | Description |
---|---|---|
—charts <string> | Deprecated, use —manifests instead. (default )</td></tr><tr><td><code>--config-path <string></code></td><td><code>-p</code></td><td>The path the root of the configuration subtree to dump e.g. components.pilot. By default, dump whole tree (default ) | |
—context <string> | The name of the kubeconfig context to use (default )</td></tr><tr><td><code>--dry-run</code></td><td></td><td>Console/log output only, make no changes.</td></tr><tr><td><code>--filename <stringSlice></code></td><td><code>-f</code></td><td>Path to file containing IstioOperator custom resource This flag can be specified multiple times to overlay multiple files. Multiple files are overlaid in left to right order. (default `[]`)</td></tr><tr><td><code>--istioNamespace <string></code></td><td><code>-i</code></td><td>Istio system namespace (default `istio-system`)</td></tr><tr><td><code>--kubeconfig <string></code></td><td><code>-c</code></td><td>Kubernetes configuration file (default ) | |
—manifests <string> | -d | Specify a path to a directory of charts and profiles (e.g. ~/Downloads/istio-1.9.0/manifests) or release tar URL (e.g. https://github.com/istio/istio/releases/download/1.9.0/istio-1.9.0-linux-amd64.tar.gz). (default )</td></tr><tr><td><code>--namespace <string></code></td><td><code>-n</code></td><td>Config namespace (default ) |
—output <string> | -o | Output format: one of json|yaml|flags (default yaml ) |
istioctl profile list
The list subcommand lists the available Istio configuration profiles.
istioctl profile list [flags]
Flags | Shorthand | Description |
---|---|---|
—charts <string> | Deprecated, use —manifests instead. (default )</td></tr><tr><td><code>--context <string></code></td><td></td><td>The name of the kubeconfig context to use (default ) | |
—dry-run | Console/log output only, make no changes. | |
—istioNamespace <string> | -i | Istio system namespace (default istio-system ) |
—kubeconfig <string> | -c | Kubernetes configuration file (default )</td></tr><tr><td><code>--manifests <string></code></td><td><code>-d</code></td><td>Specify a path to a directory of charts and profiles (e.g. ~/Downloads/istio-1.9.0/manifests) or release tar URL (e.g. https://github.com/istio/istio/releases/download/1.9.0/istio-1.9.0-linux-amd64.tar.gz). (default ) |
—namespace <string> | -n | Config namespace (default ``) |
istioctl proxy-config
A group of commands used to retrieve information about proxy configuration from the Envoy config dump
Flags | Shorthand | Description |
---|---|---|
—context <string> | The name of the kubeconfig context to use (default )</td></tr><tr><td><code>--istioNamespace <string></code></td><td><code>-i</code></td><td>Istio system namespace (default `istio-system`)</td></tr><tr><td><code>--kubeconfig <string></code></td><td><code>-c</code></td><td>Kubernetes configuration file (default ) | |
—namespace <string> | -n | Config namespace (default `)</td></tr><tr><td><code>--output <string></code></td><td><code>-o</code></td><td>Output format: one of json|short (default short`) |
Examples
# Retrieve information about proxy configuration from an Envoy instance.
istioctl proxy-config <clusters|listeners|routes|endpoints|bootstrap|log|secret> <pod-name[.namespace]>
istioctl proxy-config bootstrap
Retrieve information about bootstrap configuration for the Envoy instance in the specified pod.
istioctl proxy-config bootstrap [<type>/]<name>[.<namespace>] [flags]
istioctl proxy-config b [<type>/]<name>[.<namespace>] [flags]
Flags | Shorthand | Description |
---|---|---|
—context <string> | The name of the kubeconfig context to use (default )</td></tr><tr><td><code>--file <string></code></td><td><code>-f</code></td><td>Envoy config dump JSON file (default ) | |
—istioNamespace <string> | -i | Istio system namespace (default istio-system ) |
—kubeconfig <string> | -c | Kubernetes configuration file (default )</td></tr><tr><td><code>--namespace <string></code></td><td><code>-n</code></td><td>Config namespace (default ) |
—output <string> | -o | Output format: one of json|short (default short ) |
Examples
# Retrieve full bootstrap configuration for a given pod from Envoy.
istioctl proxy-config bootstrap <pod-name[.namespace]>
# Retrieve full bootstrap without using Kubernetes API
ssh <user@hostname> 'curl localhost:15000/config_dump' > envoy-config.json
istioctl proxy-config bootstrap --file envoy-config.json
istioctl proxy-config cluster
Retrieve information about cluster configuration for the Envoy instance in the specified pod.
istioctl proxy-config cluster [<type>/]<name>[.<namespace>] [flags]
istioctl proxy-config clusters [<type>/]<name>[.<namespace>] [flags]
istioctl proxy-config c [<type>/]<name>[.<namespace>] [flags]
Flags | Shorthand | Description |
---|---|---|
—context <string> | The name of the kubeconfig context to use (default )</td></tr><tr><td><code>--direction <string></code></td><td></td><td>Filter clusters by Direction field (default ) | |
—file <string> | -f | Envoy config dump JSON file (default )</td></tr><tr><td><code>--fqdn <string></code></td><td></td><td>Filter clusters by substring of Service FQDN field (default ) |
—istioNamespace <string> | -i | Istio system namespace (default istio-system ) |
—kubeconfig <string> | -c | Kubernetes configuration file (default )</td></tr><tr><td><code>--namespace <string></code></td><td><code>-n</code></td><td>Config namespace (default ) |
—output <string> | -o | Output format: one of json|short (default short ) |
—port <int> | Filter clusters by Port field (default 0 ) | |
—subset <string> | Filter clusters by substring of Subset field (default ``) |
Examples
# Retrieve summary about cluster configuration for a given pod from Envoy.
istioctl proxy-config clusters <pod-name[.namespace]>
# Retrieve cluster summary for clusters with port 9080.
istioctl proxy-config clusters <pod-name[.namespace]> --port 9080
# Retrieve full cluster dump for clusters that are inbound with a FQDN of details.default.svc.cluster.local.
istioctl proxy-config clusters <pod-name[.namespace]> --fqdn details.default.svc.cluster.local --direction inbound -o json
# Retrieve cluster summary without using Kubernetes API
ssh <user@hostname> 'curl localhost:15000/config_dump' > envoy-config.json
istioctl proxy-config clusters --file envoy-config.json
istioctl proxy-config endpoint
Retrieve information about endpoint configuration for the Envoy instance in the specified pod.
istioctl proxy-config endpoint [<type>/]<name>[.<namespace>] [flags]
istioctl proxy-config endpoints [<type>/]<name>[.<namespace>] [flags]
istioctl proxy-config ep [<type>/]<name>[.<namespace>] [flags]
Flags | Shorthand | Description |
---|---|---|
—address <string> | Filter endpoints by address field (default )</td></tr><tr><td><code>--cluster <string></code></td><td></td><td>Filter endpoints by cluster name field (default ) | |
—context <string> | The name of the kubeconfig context to use (default )</td></tr><tr><td><code>--file <string></code></td><td><code>-f</code></td><td>Envoy config dump JSON file (default ) | |
—istioNamespace <string> | -i | Istio system namespace (default istio-system ) |
—kubeconfig <string> | -c | Kubernetes configuration file (default )</td></tr><tr><td><code>--namespace <string></code></td><td><code>-n</code></td><td>Config namespace (default ) |
—output <string> | -o | Output format: one of json|short (default short ) |
—port <int> | Filter endpoints by Port field (default 0 ) | |
—status <string> | Filter endpoints by status field (default ``) |
Examples
# Retrieve full endpoint configuration for a given pod from Envoy.
istioctl proxy-config endpoint <pod-name[.namespace]>
# Retrieve endpoint summary for endpoint with port 9080.
istioctl proxy-config endpoint <pod-name[.namespace]> --port 9080
# Retrieve full endpoint with a address (172.17.0.2).
istioctl proxy-config endpoint <pod-name[.namespace]> --address 172.17.0.2 -o json
# Retrieve full endpoint with a cluster name (outbound|9411||zipkin.istio-system.svc.cluster.local).
istioctl proxy-config endpoint <pod-name[.namespace]> --cluster "outbound|9411||zipkin.istio-system.svc.cluster.local" -o json
# Retrieve full endpoint with the status (healthy).
istioctl proxy-config endpoint <pod-name[.namespace]> --status healthy -ojson
# Retrieve endpoint summary without using Kubernetes API
ssh <user@hostname> 'curl localhost:15000/clusters?format=json' > envoy-clusters.json
istioctl proxy-config endpoints --file envoy-clusters.json
istioctl proxy-config listener
Retrieve information about listener configuration for the Envoy instance in the specified pod.
istioctl proxy-config listener [<type>/]<name>[.<namespace>] [flags]
istioctl proxy-config listeners [<type>/]<name>[.<namespace>] [flags]
istioctl proxy-config l [<type>/]<name>[.<namespace>] [flags]
Flags | Shorthand | Description |
---|---|---|
—address <string> | Filter listeners by address field (default )</td></tr><tr><td><code>--context <string></code></td><td></td><td>The name of the kubeconfig context to use (default ) | |
—file <string> | -f | Envoy config dump JSON file (default )</td></tr><tr><td><code>--istioNamespace <string></code></td><td><code>-i</code></td><td>Istio system namespace (default `istio-system`)</td></tr><tr><td><code>--kubeconfig <string></code></td><td><code>-c</code></td><td>Kubernetes configuration file (default ) |
—namespace <string> | -n | Config namespace (default )</td></tr><tr><td><code>--output <string></code></td><td><code>-o</code></td><td>Output format: one of json|short (default `short`)</td></tr><tr><td><code>--port <int></code></td><td></td><td>Filter listeners by Port field (default `0`)</td></tr><tr><td><code>--type <string></code></td><td></td><td>Filter listeners by type field (default ) |
—verbose | Output more information |
Examples
# Retrieve summary about listener configuration for a given pod from Envoy.
istioctl proxy-config listeners <pod-name[.namespace]>
# Retrieve listener summary for listeners with port 9080.
istioctl proxy-config listeners <pod-name[.namespace]> --port 9080
# Retrieve full listener dump for HTTP listeners with a wildcard address (0.0.0.0).
istioctl proxy-config listeners <pod-name[.namespace]> --type HTTP --address 0.0.0.0 -o json
# Retrieve listener summary without using Kubernetes API
ssh <user@hostname> 'curl localhost:15000/config_dump' > envoy-config.json
istioctl proxy-config listeners --file envoy-config.json
istioctl proxy-config log
(experimental) Retrieve information about logging levels of the Envoy instance in the specified pod, and update optionally
istioctl proxy-config log [<type>/]<name>[.<namespace>] [flags]
istioctl proxy-config o [<type>/]<name>[.<namespace>] [flags]
Flags | Shorthand | Description |
---|---|---|
—context <string> | The name of the kubeconfig context to use (default )</td></tr><tr><td><code>--istioNamespace <string></code></td><td><code>-i</code></td><td>Istio system namespace (default `istio-system`)</td></tr><tr><td><code>--kubeconfig <string></code></td><td><code>-c</code></td><td>Kubernetes configuration file (default ) | |
—level <string> | Comma-separated minimum per-logger level of messages to output, in the form of [<logger>:]<level>,[<logger>:]<level>,… where logger can be one of admin, aws, assert, backtrace, client, config, connection, conn_handler, dubbo, file, filter, forward_proxy, grpc, hc, health_checker, http, http2, hystrix, init, io, jwt, kafka, lua, main, misc, mongo, quic, pool, rbac, redis, router, runtime, stats, secret, tap, testing, thrift, tracing, upstream, udp, wasm and level can be one of [trace, debug, info, warning, error, critical, off] (default )</td></tr><tr><td><code>--namespace <string></code></td><td><code>-n</code></td><td>Config namespace (default ) | |
—output <string> | -o | Output format: one of json|short (default short ) |
—reset | -r | Reset levels to default value (warning). |
—selector <string> | -l | Label selector (default ``) |
Examples
# Retrieve information about logging levels for a given pod from Envoy.
istioctl proxy-config log <pod-name[.namespace]>
# Update levels of the all loggers
istioctl proxy-config log <pod-name[.namespace]> --level none
# Update levels of the specified loggers.
istioctl proxy-config log <pod-name[.namespace]> --level http:debug,redis:debug
# Reset levels of all the loggers to default value (warning).
istioctl proxy-config log <pod-name[.namespace]> -r
istioctl proxy-config route
Retrieve information about route configuration for the Envoy instance in the specified pod.
istioctl proxy-config route [<type>/]<name>[.<namespace>] [flags]
istioctl proxy-config routes [<type>/]<name>[.<namespace>] [flags]
istioctl proxy-config r [<type>/]<name>[.<namespace>] [flags]
Flags | Shorthand | Description |
---|---|---|
—context <string> | The name of the kubeconfig context to use (default )</td></tr><tr><td><code>--file <string></code></td><td><code>-f</code></td><td>Envoy config dump JSON file (default ) | |
—istioNamespace <string> | -i | Istio system namespace (default istio-system ) |
—kubeconfig <string> | -c | Kubernetes configuration file (default )</td></tr><tr><td><code>--name <string></code></td><td></td><td>Filter listeners by route name field (default ) |
—namespace <string> | -n | Config namespace (default `)</td></tr><tr><td><code>--output <string></code></td><td><code>-o</code></td><td>Output format: one of json|short (default short`) |
—verbose | Output more information |
Examples
# Retrieve summary about route configuration for a given pod from Envoy.
istioctl proxy-config routes <pod-name[.namespace]>
# Retrieve route summary for route 9080.
istioctl proxy-config route <pod-name[.namespace]> --name 9080
# Retrieve full route dump for route 9080
istioctl proxy-config route <pod-name[.namespace]> --name 9080 -o json
# Retrieve route summary without using Kubernetes API
ssh <user@hostname> 'curl localhost:15000/config_dump' > envoy-config.json
istioctl proxy-config routes --file envoy-config.json
istioctl proxy-config secret
Retrieve information about secret configuration for the Envoy instance in the specified pod.
THIS COMMAND IS UNDER ACTIVE DEVELOPMENT AND NOT READY FOR PRODUCTION USE.
istioctl proxy-config secret [<type>/]<name>[.<namespace>] [flags]
istioctl proxy-config secrets [<type>/]<name>[.<namespace>] [flags]
istioctl proxy-config s [<type>/]<name>[.<namespace>] [flags]
Flags | Shorthand | Description |
---|---|---|
—context <string> | The name of the kubeconfig context to use (default )</td></tr><tr><td><code>--file <string></code></td><td><code>-f</code></td><td>Envoy config dump JSON file (default ) | |
—istioNamespace <string> | -i | Istio system namespace (default istio-system ) |
—kubeconfig <string> | -c | Kubernetes configuration file (default )</td></tr><tr><td><code>--namespace <string></code></td><td><code>-n</code></td><td>Config namespace (default ) |
—output <string> | -o | Output format: one of json|short (default short ) |
Examples
# Retrieve full secret configuration for a given pod from Envoy.
istioctl proxy-config secret <pod-name[.namespace]>
# Retrieve full bootstrap without using Kubernetes API
ssh <user@hostname> 'curl localhost:15000/config_dump' > envoy-config.json
istioctl proxy-config secret --file envoy-config.json
istioctl proxy-status
Retrieves last sent and last acknowledged xDS sync from Istiod to each Envoy in the mesh
istioctl proxy-status [<type>/]<name>[.<namespace>] [flags]
istioctl ps [<type>/]<name>[.<namespace>] [flags]
Flags | Shorthand | Description |
---|---|---|
—context <string> | The name of the kubeconfig context to use (default )</td></tr><tr><td><code>--file <string></code></td><td><code>-f</code></td><td>Envoy config dump JSON file (default ) | |
—istioNamespace <string> | -i | Istio system namespace (default istio-system ) |
—kubeconfig <string> | -c | Kubernetes configuration file (default )</td></tr><tr><td><code>--namespace <string></code></td><td><code>-n</code></td><td>Config namespace (default ) |
—revision <string> | Control plane revision (default ``) |
Examples
# Retrieve sync status for all Envoys in a mesh
istioctl proxy-status
# Retrieve sync diff for a single Envoy and Istiod
istioctl proxy-status istio-egressgateway-59585c5b9c-ndc59.istio-system
# Retrieve sync diff between Istiod and one pod under a deployment
istioctl proxy-status deployment/productpage-v1
# Write proxy config-dump to file, and compare to Istio control plane
kubectl port-forward -n istio-system istio-egressgateway-59585c5b9c-ndc59 15000 &
curl localhost:15000/config_dump > cd.json
istioctl proxy-status istio-egressgateway-59585c5b9c-ndc59.istio-system --file cd.json
istioctl upgrade
The upgrade command checks for upgrade version eligibility and, if eligible, upgrades the Istio control plane components in-place. Warning: traffic may be disrupted during upgrade. Please ensure PodDisruptionBudgets are defined to maintain service continuity.
istioctl upgrade [flags]
Flags | Shorthand | Description |
---|---|---|
—charts <string> | Deprecated, use —manifests instead. (default )</td></tr><tr><td><code>--context <string></code></td><td></td><td>The name of the kubeconfig context to use (default ) | |
—dry-run | Console/log output only, make no changes. | |
—filename <stringSlice> | -f | Path to file containing IstioOperator custom resource This flag can be specified multiple times to overlay multiple files. Multiple files are overlaid in left to right order. (default [] ) |
—force | Apply the upgrade without eligibility checks | |
—istioNamespace <string> | -i | Istio system namespace (default istio-system ) |
—kubeconfig <string> | -c | Kubernetes configuration file (default )</td></tr><tr><td><code>--manifests <string></code></td><td><code>-d</code></td><td>Specify a path to a directory of charts and profiles (e.g. ~/Downloads/istio-1.9.0/manifests) or release tar URL (e.g. https://github.com/istio/istio/releases/download/1.9.0/istio-1.9.0-linux-amd64.tar.gz). (default ) |
—namespace <string> | -n | Config namespace (default `)</td></tr><tr><td><code>--readiness-timeout <duration></code></td><td></td><td>Maximum time to wait for Istio resources in each component to be ready. (default 5m0s)</td></tr><tr><td><code>--set <stringArray></code></td><td><code>-s</code></td><td>Override an IstioOperator value, e.g. to choose a profile (--set profile=demo), enable or disable components (--set components.policy.enabled=true), or override Istio settings (--set meshConfig.enableTracing=true). See documentation for more info:https://istio.io/v1.9/docs/reference/config/istio.operator.v1alpha1/#IstioOperatorSpec (default []`) |
—skip-confirmation | -y | If skip-confirmation is set, skips the prompting confirmation for value changes in this upgrade |
—verify | Verify the Istio control plane after installation/in-place upgrade |
istioctl validate
Validate Istio policy and rules files
istioctl validate -f FILENAME [options] [flags]
istioctl v -f FILENAME [options] [flags]
Flags | Shorthand | Description |
---|---|---|
—context <string> | The name of the kubeconfig context to use (default )</td></tr><tr><td><code>--filename <stringSlice></code></td><td><code>-f</code></td><td>Names of files to validate (default `[]`)</td></tr><tr><td><code>--istioNamespace <string></code></td><td><code>-i</code></td><td>Istio system namespace (default `istio-system`)</td></tr><tr><td><code>--kubeconfig <string></code></td><td><code>-c</code></td><td>Kubernetes configuration file (default ) | |
—namespace <string> | -n | Config namespace (default ``) |
—referential | -x | Enable structural validation for policy and telemetry |
Examples
# Validate bookinfo-gateway.yaml
istioctl validate -f samples/bookinfo/networking/bookinfo-gateway.yaml
# Validate bookinfo-gateway.yaml with shorthand syntax
istioctl v -f samples/bookinfo/networking/bookinfo-gateway.yaml
# Validate current deployments under 'default' namespace within the cluster
kubectl get deployments -o yaml | istioctl validate -f -
# Validate current services under 'default' namespace within the cluster
kubectl get services -o yaml | istioctl validate -f -
# Also see the related command 'istioctl analyze'
istioctl analyze samples/bookinfo/networking/bookinfo-gateway.yaml
istioctl verify-install
verify-install verifies Istio installation status against the installation file you specified when you installed Istio. It loops through all the installation resources defined in your installation file and reports whether all of them are in ready status. It will report failure when any of them are not ready.
If you do not specify an installation it will check for an IstioOperator resource and will verify if pods and services defined in it are present.
Note: For verifying whether your cluster is ready for Istio installation, see istioctl experimental precheck.
istioctl verify-install [-f <deployment or istio operator file>] [--revision <revision>] [flags]
Flags | Shorthand | Description |
---|---|---|
—context <string> | The name of the kubeconfig context to use (default )</td></tr><tr><td><code>--filename <stringSlice></code></td><td><code>-f</code></td><td>Istio YAML installation file. (default `[]`)</td></tr><tr><td><code>--istioNamespace <string></code></td><td><code>-i</code></td><td>Istio system namespace (default `istio-system`)</td></tr><tr><td><code>--kubeconfig <string></code></td><td><code>-c</code></td><td>Kubernetes configuration file (default ) | |
—manifests <string> | -d | Specify a path to a directory of charts and profiles (e.g. ~/Downloads/istio-1.9.0/manifests) or release tar URL (e.g. https://github.com/istio/istio/releases/download/1.9.0/istio-1.9.0-linux-amd64.tar.gz). (default )</td></tr><tr><td><code>--namespace <string></code></td><td><code>-n</code></td><td>Config namespace (default ) |
—revision <string> | Control plane revision (default ``) |
Examples
# Verify that Istio is installed correctly via Istio Operator
istioctl verify-install
# Verify the deployment matches a custom Istio deployment configuration
istioctl verify-install -f $HOME/istio.yaml
# Verify the deployment matches the Istio Operator deployment definition
istioctl verify-install --revision <canary>
istioctl version
Prints out build version information
istioctl version [flags]
Flags | Shorthand | Description |
---|---|---|
—context <string> | The name of the kubeconfig context to use (default )</td></tr><tr><td><code>--istioNamespace <string></code></td><td><code>-i</code></td><td>Istio system namespace (default `istio-system`)</td></tr><tr><td><code>--kubeconfig <string></code></td><td><code>-c</code></td><td>Kubernetes configuration file (default ) | |
—namespace <string> | -n | Config namespace (default )</td></tr><tr><td><code>--output <string></code></td><td><code>-o</code></td><td>One of 'yaml' or 'json'. (default ) |
—remote | Use —remote=false to suppress control plane check | |
—revision <string> | Control plane revision (default ``) | |
—short | -s | Use —short=false to generate full version information |
Environment variables
These environment variables affect the behavior of the istioctl
command. Please use with caution as these environment variables are experimental and can change anytime.
Variable Name | Type | Default Value | Description |
---|---|---|---|
CLUSTER_ID | String | Kubernetes | Defines the cluster and service registry that this Istiod instance is belongs to |
ENABLE_ADMIN_ENDPOINTS | Boolean | false | If this is set to true, dangerous admin endpoins will be exposed on the debug interface. Not recommended for production. |
ENABLE_CA_SERVER | Boolean | true | If this is set to false, will not create CA server in istiod. |
ENABLE_DEBUG_ON_HTTP | Boolean | true | If this is set to false, the debug interface will not be ebabled on Http, recommended for production |
ENABLE_LEGACY_FSGROUP_INJECTION | Boolean | true | If true, Istiod will set the pod fsGroup to 1337 on injection. This is required for Kubernetes 1.18 and older (see https://github.com/kubernetes/kubernetes/issues/57923 for details) unless JWT_POLICY is “first-party-jwt”. |
ENABLE_WASM_TELEMETRY | Boolean | false | If enabled, Wasm-based telemetry will be enabled. |
EXTERNAL_ISTIOD | Boolean | false | If this is set to true, one Istiod will control remote clusters including CA. |
INJECTION_WEBHOOK_CONFIG_NAME | String | istio-sidecar-injector | Name of the mutatingwebhookconfiguration to patch, if istioctl is not used. |
ISTIOCONFIG | String | $HOME/.istioctl/config.yaml | Default values for istioctl flags |
ISTIOCTL_AUTHORITY | String |
| The istioctl —authority override |
ISTIOCTL_CERT_DIR | String |
| The istioctl —cert-dir override |
ISTIOCTL_INSECURE | Boolean | false | The istioctl —insecure override |
ISTIOCTL_ISTIONAMESPACE | String | istio-system | The istioctl —istioNamespace override |
ISTIOCTL_PLAINTEXT | Boolean | false | The istioctl —plaintext override |
ISTIOCTL_PREFER_EXPERIMENTAL | Boolean | false | The istioctl should use experimental subcommand variants |
ISTIOCTL_XDS_ADDRESS | String |
| The istioctl —xds-address override |
ISTIOCTL_XDS_PORT | Integer | 15012 | The istioctl —xds-port override |
ISTIOD_CUSTOM_HOST | String |
| Custom host name of istiod that istiod signs the server cert. |
ISTIOD_ENABLE_SDS_SERVER | Boolean | true | If enabled, Istiod will serve SDS for credentialName secrets (rather than in-proxy). To ensure proper security, PILOT_ENABLE_XDS_IDENTITY_CHECK=true is required as well. |
ISTIO_AGENT_ENABLE_WASM_REMOTE_LOAD_CONVERSION | Boolean | true | If enabled, Istio agent will intercept ECDS resource update, downloads Wasm module, and replaces Wasm module remote load with downloaded local module file. |
ISTIO_DEFAULT_REQUEST_TIMEOUT | Time Duration | 0s | Default Http and gRPC Request timeout |
ISTIO_GPRC_MAXRECVMSGSIZE | Integer | 4194304 | Sets the max receive buffer size of gRPC stream in bytes. |
ISTIO_GPRC_MAXSTREAMS | Integer | 100000 | Sets the maximum number of concurrent grpc streams. |
ISTIO_PROMETHEUS_ANNOTATIONS | String |
| |
JWT_POLICY | String | third-party-jwt | The JWT validation policy. |
K8S_INGRESS_NS | String |
| |
PILOT_ALLOW_METADATA_CERTS_DR_MUTUAL_TLS | Boolean | false | If true, Pilot will allow certs specified in Metadata to override DR certs in MUTUAL TLS mode. This is only enabled for migration and will be removed soon. |
PILOT_CERT_PROVIDER | String | istiod | The provider of Pilot DNS certificate. |
PILOT_DEBOUNCE_AFTER | Time Duration | 100ms | The delay added to config/registry events for debouncing. This will delay the push by at least this internal. If no change is detected within this period, the push will happen, otherwise we’ll keep delaying until things settle, up to a max of PILOT_DEBOUNCE_MAX. |
PILOT_DEBOUNCE_MAX | Time Duration | 10s | The maximum amount of time to wait for events while debouncing. If events keep showing up with no breaks for this time, we’ll trigger a push. |
PILOT_DISTRIBUTION_HISTORY_RETENTION | Time Duration | 1m0s | If enabled, Pilot will keep track of old versions of distributed config for this duration. |
PILOT_ENABLED_SERVICE_APIS | Boolean | false | If this is set to true, support for Kubernetes service-apis (github.com/kubernetes-sigs/service-apis) will be enabled. This feature is currently experimental, and is off by default. |
PILOT_ENABLE_ANALYSIS | Boolean | false | If enabled, pilot will run istio analyzers and write analysis errors to the Status field of any Istio Resources |
PILOT_ENABLE_CONFIG_DISTRIBUTION_TRACKING | Boolean | true | If enabled, Pilot will assign meaningful nonces to each Envoy configuration message, and allow users to interrogate which envoy has which config from the debug interface. |
PILOT_ENABLE_CRD_VALIDATION | Boolean | false | If enabled, pilot will validate CRDs while retrieving CRDs from kubernetes cache.Use this flag to enable validation of CRDs in Pilot, especially in deployments that do not have galley installed. |
PILOT_ENABLE_CROSS_CLUSTER_WORKLOAD_ENTRY | Boolean | false | If enabled, pilot will read WorkloadEntry from other clusters, selectable by Services in that cluster. |
PILOT_ENABLE_DESTINATION_RULE_INHERITANCE | Boolean | false | If set, workload specific DestinationRules will inherit configurations settings from mesh and namespace level rules |
PILOT_ENABLE_EDS_DEBOUNCE | Boolean | true | If enabled, Pilot will include EDS pushes in the push debouncing, configured by PILOT_DEBOUNCE_AFTER and PILOT_DEBOUNCE_MAX. EDS pushes may be delayed, but there will be fewer pushes. By default this is enabled |
PILOT_ENABLE_EDS_FOR_HEADLESS_SERVICES | Boolean | false | If enabled, for headless service in Kubernetes, pilot will send endpoints over EDS, allowing the sidecar to load balance among pods in the headless service. This feature should be enabled if applications access all services explicitly via a HTTP proxy port in the sidecar. |
PILOT_ENABLE_FLOW_CONTROL | Boolean | false | If enabled, pilot will wait for the completion of a receive operation beforeexecuting a push operation. This is a form of flow control and is useful inenvironments with high rates of push requests to each gateway. By default,this is false. |
PILOT_ENABLE_HEADLESS_SERVICE_POD_LISTENERS | Boolean | true | If enabled, for a headless service/stateful set in Kubernetes, pilot will generate an outbound listener for each pod in a headless service. This feature should be disabled if headless services have a large number of pods. |
PILOT_ENABLE_ISTIO_TAGS | Boolean | true | Determines whether or not trace spans generated by Envoy will include Istio-specific tags. |
PILOT_ENABLE_K8S_SELECT_WORKLOAD_ENTRIES | Boolean | true | If enabled, Kubernetes services with selectors will select workload entries with matching labels. It is safe to disable it if you are quite sure you don’t need this feature |
PILOT_ENABLE_LOOP_BLOCKER | Boolean | true | If enabled, Envoy will be configured to prevent traffic directly the the inbound/outbound ports (15001/15006). This prevents traffic loops. This option will be removed, and considered always enabled, in 1.9. |
PILOT_ENABLE_MYSQL_FILTER | Boolean | false | EnableMysqlFilter enables injection of envoy.filters.network.mysql_proxy in the filter chain. |
PILOT_ENABLE_PROTOCOL_SNIFFING_FOR_INBOUND | Boolean | true | If enabled, protocol sniffing will be used for inbound listeners whose port protocol is not specified or unsupported |
PILOT_ENABLE_PROTOCOL_SNIFFING_FOR_OUTBOUND | Boolean | true | If enabled, protocol sniffing will be used for outbound listeners whose port protocol is not specified or unsupported |
PILOT_ENABLE_REDIS_FILTER | Boolean | false | EnableRedisFilter enables injection of envoy.filters.network.redis_proxy in the filter chain. |
PILOT_ENABLE_SERVICEENTRY_SELECT_PODS | Boolean | true | If enabled, service entries with selectors will select pods from the cluster. It is safe to disable it if you are quite sure you don’t need this feature |
PILOT_ENABLE_STATUS | Boolean | false | If enabled, pilot will update the CRD Status field of all istio resources with reconciliation status. |
PILOT_ENABLE_THRIFT_FILTER | Boolean | false | EnableThriftFilter enables injection of envoy.filters.network.thrift_proxy in the filter chain. |
PILOT_ENABLE_VIRTUAL_SERVICE_DELEGATE | Boolean | true | If set to false, virtualService delegate will not be supported. |
PILOT_ENABLE_WORKLOAD_ENTRY_AUTOREGISTRATION | Boolean | false | Enables auto-registering WorkloadEntries based on associated WorkloadGroups upon XDS connection by the workload. |
PILOT_ENABLE_WORKLOAD_ENTRY_HEALTHCHECKS | Boolean | false | Enables automatic health checks of WorkloadEntries based on the config provided in the associated WorkloadGroup |
PILOT_ENABLE_XDS_CACHE | Boolean | true | If true, Pilot will cache XDS responses. |
PILOT_ENABLE_XDS_IDENTITY_CHECK | Boolean | true | If enabled, pilot will authorize XDS clients, to ensure they are acting only as namespaces they have permissions for. |
PILOT_ENDPOINT_TELEMETRY_LABEL | Boolean | true | If true, pilot will add telemetry related metadata to Endpoint resource, which will be consumed by telemetry filter. |
PILOT_FILTER_GATEWAY_CLUSTER_CONFIG | Boolean | false | |
PILOT_FLOW_CONTROL_TIMEOUT | Time Duration | 15s | If set, the max amount of time to delay a push by. Depends on PILOT_ENABLE_FLOW_CONTROL. |
PILOT_HTTP10 | Boolean | false | Enables the use of HTTP 1.0 in the outbound HTTP listeners, to support legacy applications. |
PILOT_INBOUND_PROTOCOL_DETECTION_TIMEOUT | Time Duration | 1s | Protocol detection timeout for inbound listener |
PILOT_INITIAL_FETCH_TIMEOUT | Time Duration | 0s | Specifies the initial_fetch_timeout for config. If this time is reached without a response to the config requested by Envoy, the Envoy will move on with the init phase. This prevents envoy from getting stuck waiting on config during startup. |
PILOT_PUSH_THROTTLE | Integer | 100 | Limits the number of concurrent pushes allowed. On larger machines this can be increased for faster pushes |
PILOT_SCOPE_GATEWAY_TO_NAMESPACE | Boolean | false | If enabled, a gateway workload can only select gateway resources in the same namespace. Gateways with same selectors in different namespaces will not be applicable. |
PILOT_SIDECAR_ENABLE_INBOUND_TLS_V2 | Boolean | true | If true, Pilot will set the TLS version on server side as TLSv1_2 and also enforce strong cipher suites |
PILOT_SIDECAR_USE_REMOTE_ADDRESS | Boolean | false | UseRemoteAddress sets useRemoteAddress to true for side car outbound listeners. |
PILOT_SKIP_VALIDATE_TRUST_DOMAIN | Boolean | false | Skip validating the peer is from the same trust domain when mTLS is enabled in authentication policy |
PILOT_STATUS_BURST | Integer | 500 | If status is enabled, controls the Burst rate with which status will be updated. See https://godoc.org/k8s.io/client-go/rest#Config Burst |
PILOT_STATUS_MAX_WORKERS | Integer | 100 | The maximum number of workers Pilot will use to keep configuration status up to date. Smaller numbers will result in higher status latency, but larger numbers may impact CPU in high scale environments. |
PILOT_STATUS_QPS | Floating-Point | 100 | If status is enabled, controls the QPS with which status will be updated. See https://godoc.org/k8s.io/client-go/rest#Config QPS |
PILOT_TRACE_SAMPLING | Floating-Point | 1 | Sets the mesh-wide trace sampling percentage. Should be 0.0 - 100.0. Precision to 0.01. Default is 1.0. |
PILOT_USE_ENDPOINT_SLICE | Boolean | false | If enabled, Pilot will use EndpointSlices as the source of endpoints for Kubernetes services. By default, this is false, and Endpoints will be used. This requires the Kubernetes EndpointSlice controller to be enabled. Currently this is mutual exclusive - either Endpoints or EndpointSlices will be used |
PILOT_WORKLOAD_ENTRY_GRACE_PERIOD | Time Duration | 10s | The amount of time an auto-registered workload can remain disconnected from all Pilot instances before the associated WorkloadEntry is cleaned up. |
PILOT_XDS_CACHE_SIZE | Integer | 20000 | The maximum number of cache entries for the XDS cache. If the size is <= 0, the cache will have no upper bound. |
PILOT_XDS_CACHE_STATS | Boolean | false | If true, Pilot will collect metrics for XDS cache efficiency. |
PILOT_XDS_SEND_TIMEOUT | Time Duration | 5s | The timeout to send the XDS configuration to proxies. After this timeout is reached, Pilot will discard that push. |
POD_NAME | String |
| |
REQUIRE_3P_TOKEN | Boolean | false | Reject k8s default tokens, without audience. If false, default K8S token will be accepted |
SPIFFE_BUNDLE_ENDPOINTS | String |
| The SPIFFE bundle trust domain to endpoint mappings. Istiod retrieves the root certificate from each SPIFFE bundle endpoint and uses it to verify client certifiates from that trust domain. The endpoint must be compliant to the SPIFFE Bundle Endpoint standard. For details, please refer to https://github.com/spiffe/spiffe/blob/master/standards/SPIFFE_Trust_Domain_and_Bundle.md . No need to configure this for root certificates issued via Istiod or web-PKI based root certificates. Use || between <trustdomain, endpoint> tuples. Use | as delimiter between trust domain and endpoint in each tuple. For example: foo|https://url/for/foo||bar|https://url/for/bar |
TERM | String |
| Specifies terminal type. Use ‘dumb’ to suppress color output |
TERMINATION_DRAIN_DURATION_SECONDS | Integer | 5 | The amount of time allowed for connections to complete on pilot-agent shutdown. On receiving SIGTERM or SIGINT, pilot-agent tells the active Envoy to start draining, preventing any new connections and allowing existing connections to complete. It then sleeps for the TerminationDrainDuration and then kills any remaining active Envoy processes. |
TOKEN_AUDIENCES | String | istio-ca | A list of comma separated audiences to check in the JWT token before issuing a certificate. The token is accepted if it matches with one of the audiences |
XDS_AUTH | Boolean | true | If true, will authenticate XDS clients. |
Exported metrics
Metric Name | Type | Description |
---|---|---|
cache_flush_total | Sum | number of times operator cache was flushed |
cr_deletion_total | Sum | Number of IstioOperator CR deleted |
cr_merge_failure_total | Sum | Number of IstioOperator CR merge failures |
cr_validation_error_total | Sum | Number of IstioOperator CR validation failures |
endpoint_no_pod | LastValue | Endpoints without an associated pod. |
galley_runtime_processor_event_span_duration_milliseconds | Distribution | The duration between each incoming event |
galley_runtime_processor_events_processed_total | Count | The number of events that have been processed |
galley_runtime_processor_snapshot_events_total | Distribution | The number of events per snapshot |
galley_runtime_processor_snapshot_lifetime_duration_milliseconds | Distribution | The duration of each snapshot |
galley_runtime_processor_snapshots_published_total | Count | The number of snapshots that have been published |
galley_runtime_state_type_instances_total | LastValue | The number of type instances per type URL |
galley_runtime_strategy_on_change_total | Count | The number of times the strategy’s onChange has been called |
galley_runtime_strategy_timer_max_time_reached_total | Count | The number of times the max time has been reached |
galley_runtime_strategy_timer_quiesce_reached_total | Count | The number of times a quiesce has been reached |
galley_runtime_strategy_timer_resets_total | Count | The number of times the timer has been reset |
galley_source_kube_dynamic_converter_failure_total | Count | The number of times a dynamnic kubernetes source failed converting a resources |
galley_source_kube_dynamic_converter_success_total | Count | The number of times a dynamic kubernetes source successfully converted a resource |
galley_source_kube_event_error_total | Count | The number of times a kubernetes source encountered errored while handling an event |
galley_source_kube_event_success_total | Count | The number of times a kubernetes source successfully handled an event |
galley_validation_config_delete_error | Count | k8s webhook configuration delete error |
galley_validation_config_load | Count | k8s webhook configuration (re)loads |
galley_validation_config_load_error | Count | k8s webhook configuration (re)load error |
galley_validation_config_update_error | Count | k8s webhook configuration update error |
galley_validation_config_updates | Count | k8s webhook configuration updates |
get_cr_error_total | Sum | Number of times fetching CR from apiserver failed |
istio_build | LastValue | Istio component build info |
legacy_path_translation_total | Sum | Number of times a legacy API path is translated |
manifest_patch_error_total | Sum | Number of times K8S patch overlays failed |
manifest_render_error_total | Sum | Number of times error occurred during rendering output manifest |
num_failed_outgoing_requests | Sum | Number of failed outgoing requests (e.g. to a token exchange server, CA, etc.) |
num_file_secret_failures_total | Sum | Number of times secret generation failed for files |
num_file_watcher_failures_total | Sum | Number of times file watcher failed to add watchers |
num_outgoing_requests | Sum | Number of total outgoing requests (e.g. to a token exchange server, CA, etc.) |
num_outgoing_retries | Sum | Number of outgoing retry requests (e.g. to a token exchange server, CA, etc.) |
outgoing_latency | Sum | The latency of outgoing requests (e.g. to a token exchange server, CA, etc.) in milliseconds. |
owned_resource_total | LastValue | Number of resources currently owned by the operator |
pilot_conflict_inbound_listener | LastValue | Number of conflicting inbound listeners. |
pilot_conflict_outbound_listener_http_over_current_tcp | LastValue | Number of conflicting wildcard http listeners with current wildcard tcp listener. |
pilot_conflict_outbound_listener_tcp_over_current_http | LastValue | Number of conflicting wildcard tcp listeners with current wildcard http listener. |
pilot_conflict_outbound_listener_tcp_over_current_tcp | LastValue | Number of conflicting tcp listeners with current tcp listener. |
pilot_destrule_subsets | LastValue | Duplicate subsets across destination rules for same host |
pilot_duplicate_envoy_clusters | LastValue | Duplicate envoy clusters caused by service entries with same hostname |
pilot_eds_no_instances | LastValue | Number of clusters without instances. |
pilot_endpoint_not_ready | LastValue | Endpoint found in unready state. |
pilot_inbound_updates | Sum | Total number of updates received by pilot. |
pilot_invalid_out_listeners | LastValue | Number of invalid outbound listeners. |
pilot_jwks_resolver_network_fetch_fail_total | Sum | Total number of failed network fetch by pilot jwks resolver |
pilot_jwks_resolver_network_fetch_success_total | Sum | Total number of successfully network fetch by pilot jwks resolver |
pilot_k8s_cfg_events | Sum | Events from k8s config. |
pilot_k8s_endpoints_pending_pod | LastValue | Number of endpoints that do not currently have any corresponding pods. |
pilot_k8s_endpoints_with_no_pods | Sum | Endpoints that does not have any corresponding pods. |
pilot_k8s_object_errors | LastValue | Errors converting k8s CRDs |
pilot_k8s_reg_events | Sum | Events from k8s registry. |
pilot_no_ip | LastValue | Pods not found in the endpoint table, possibly invalid. |
pilot_proxy_convergence_time | Distribution | Delay in seconds between config change and a proxy receiving all required configuration. |
pilot_proxy_queue_time | Distribution | Time in seconds, a proxy is in the push queue before being dequeued. |
pilot_push_triggers | Sum | Total number of times a push was triggered, labeled by reason for the push. |
pilot_services | LastValue | Total services known to pilot. |
pilot_total_k8s_object_errors | Sum | Total Errors converting k8s CRDs |
pilot_total_rejected_configs | Sum | Total number of configs that Pilot had to reject or ignore. |
pilot_total_xds_internal_errors | Sum | Total number of internal XDS errors in pilot. |
pilot_total_xds_rejects | Sum | Total number of XDS responses from pilot rejected by proxy. |
pilot_virt_services | LastValue | Total virtual services known to pilot. |
pilot_vservice_dup_domain | LastValue | Virtual services with dup domains. |
pilot_xds | LastValue | Number of endpoints connected to this pilot using XDS. |
pilot_xds_cds_reject | LastValue | Pilot rejected CDS configs. |
pilot_xds_delayed_push_timeouts_total | Sum | Total number of XDS pushes that are delayed and timed out |
pilot_xds_delayed_pushes_total | Sum | Total number of XDS pushes that are delayed. |
pilot_xds_eds_reject | LastValue | Pilot rejected EDS. |
pilot_xds_expired_nonce | Sum | Total number of XDS requests with an expired nonce. |
pilot_xds_lds_reject | LastValue | Pilot rejected LDS. |
pilot_xds_push_context_errors | Sum | Number of errors (timeouts) initiating push context. |
pilot_xds_push_time | Distribution | Total time in seconds Pilot takes to push lds, rds, cds and eds. |
pilot_xds_pushes | Sum | Pilot build and send errors for lds, rds, cds and eds. |
pilot_xds_rds_reject | LastValue | Pilot rejected RDS. |
pilot_xds_send_time | Distribution | Total time in seconds Pilot takes to send generated configuration. |
pilot_xds_write_timeout | Sum | Pilot XDS response write timeouts. |
render_manifest_total | Sum | Number of component manifests rendered |
resource_creation_total | Sum | Number of resources created by the operator |
resource_deletion_total | Sum | Number of resources deleted by the operator |
resource_prune_total | Sum | Number of resources pruned by the operator |
resource_update_total | Sum | Number of resources updated by the operator |
scrape_failures_total | Sum | The total number of failed scrapes. |
scrapes_total | Sum | The total number of scrapes. |
sidecar_injection_failure_total | Sum | Total number of failed sidecar injection requests. |
sidecar_injection_requests_total | Sum | Total number of sidecar injection requests. |
sidecar_injection_skip_total | Sum | Total number of skipped sidecar injection requests. |
sidecar_injection_success_total | Sum | Total number of successful sidecar injection requests. |
startup_duration_seconds | LastValue | The time from the process starting to being marked ready. |
version | LastValue | Version of operator binary |
xds_cache_evictions | Sum | Total number of xds cache evictions. |
xds_cache_reads | Sum | Total number of xds cache xdsCacheReads. |
xds_cache_size | LastValue | Current size of xds cache |