diff --git a/content/en/docs/reference/commands/istioctl/index.html b/content/en/docs/reference/commands/istioctl/index.html index b17253e0f1..89de0edbc8 100644 --- a/content/en/docs/reference/commands/istioctl/index.html +++ b/content/en/docs/reference/commands/istioctl/index.html @@ -220,6 +220,11 @@ debug and diagnose their Istio mesh. The severity level of analysis at which to set a non-zero exit code. Valid values: [Info Warning Error] (default `Error`) +--ignore-unknown + +Don't complain about un-parseable input documents, for cases where analyze should run only on k8s compliant inputs. + + --istioNamespace <string> -i Istio system namespace (default `istio-system`) diff --git a/content/en/docs/reference/config/istio.mesh.v1alpha1/index.html b/content/en/docs/reference/config/istio.mesh.v1alpha1/index.html index 5b725e8c9c..12e0f3ed3d 100644 --- a/content/en/docs/reference/config/istio.mesh.v1alpha1/index.html +++ b/content/en/docs/reference/config/istio.mesh.v1alpha1/index.html @@ -7,7 +7,7 @@ location: https://istio.io/docs/reference/config/istio.mesh.v1alpha1.html layout: protoc-gen-docs generator: protoc-gen-docs weight: 20 -number_of_entries: 51 +number_of_entries: 52 ---

Configuration affecting the service mesh as a whole.

@@ -2486,9 +2486,9 @@ No No - + serviceCluster -string +string (oneof)

Service cluster defines the name for the service_cluster that is shared by all Envoy instances. This setting corresponds to @@ -2504,6 +2504,18 @@ receives API calls from Envoy, it uses the value of the service-node + + +No + + + +tracingServiceName +TracingServiceName (oneof) + +

Used by Envoy proxies to assign the values for the service names in trace +spans.

+ No @@ -3660,6 +3672,45 @@ See the B3 header propagation README for details.

+ + + + + +

ProxyConfig.TracingServiceName

+
+

Allows specification of various Istio-supported naming schemes for the +Envoy service_cluster value. The servce_cluster value is primarily used +by Envoys to provide service names for tracing spans.

+ + + + + + + + + + + + + + + + + + + + diff --git a/content/en/docs/reference/config/networking/virtual-service/index.html b/content/en/docs/reference/config/networking/virtual-service/index.html index 253b678e3e..c2bdcc566b 100644 --- a/content/en/docs/reference/config/networking/virtual-service/index.html +++ b/content/en/docs/reference/config/networking/virtual-service/index.html @@ -2324,9 +2324,9 @@ No
NameDescription
APP_LABEL_AND_NAMESPACE +

Default scheme. Uses the app label and workload namespace to construct +a cluster name. If the app label does not exist istio-proxy is used.

+ +
CANONICAL_NAME_ONLY +

Uses the canonical name for a workload (excluding namespace).

+ +
CANONICAL_NAME_AND_NAMESPACE +

Uses the canonical name and namespace for a workload.

+

Specifies the conditions under which retry takes place. One or more policies can be specified using a ‘,’ delimited list. -If retryon specifies a valid HTTP status, it will be added to retriablestatuscodes retry policy. -See the [retry policies](https://www.envoyproxy.io/docs/envoy/latest/configuration/http/httpfilters/routerfilter#x-envoy-retry-on) -and [gRPC retry policies](https://www.envoyproxy.io/docs/envoy/latest/configuration/http/httpfilters/router_filter#x-envoy-retry-grpc-on) for more details.

+If retry_on specifies a valid HTTP status, it will be added to retriablestatuscodes retry policy. +See the retry policies +and gRPC retry policies for more details.