diff --git a/content/en/docs/reference/commands/istioctl/index.html b/content/en/docs/reference/commands/istioctl/index.html index 36185898fb..abe08f198f 100644 --- a/content/en/docs/reference/commands/istioctl/index.html +++ b/content/en/docs/reference/commands/istioctl/index.html @@ -2567,6 +2567,11 @@ istioctl x version --xds-label istio.io/rev=default Wait condition, must be 'distribution' or 'delete' (default `distribution`) +--generation <string> + +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`) @@ -2582,11 +2587,6 @@ istioctl x version --xds-label istio.io/rev=default Config namespace (default ``) ---resource-version <string> - -Wait for a specific version of config to become current, rather than using whatever is latest in kubernetes (default ``) - - --revision <string> Control plane revision (default ``) @@ -5239,6 +5239,12 @@ These environment variables affect the behavior of the istioctl com 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 diff --git a/content/en/docs/reference/commands/operator/index.html b/content/en/docs/reference/commands/operator/index.html index 05bc52d87e..1ba8aa105a 100644 --- a/content/en/docs/reference/commands/operator/index.html +++ b/content/en/docs/reference/commands/operator/index.html @@ -458,6 +458,12 @@ These environment variables affect the behavior of the operator com 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 diff --git a/content/en/docs/reference/commands/pilot-agent/index.html b/content/en/docs/reference/commands/pilot-agent/index.html index e41bcd3e15..ca9fe90c51 100644 --- a/content/en/docs/reference/commands/pilot-agent/index.html +++ b/content/en/docs/reference/commands/pilot-agent/index.html @@ -1023,6 +1023,12 @@ These environment variables affect the behavior of the pilot-agent 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 diff --git a/content/en/docs/reference/commands/pilot-discovery/index.html b/content/en/docs/reference/commands/pilot-discovery/index.html index 54609b6fde..732d39bee1 100644 --- a/content/en/docs/reference/commands/pilot-discovery/index.html +++ b/content/en/docs/reference/commands/pilot-discovery/index.html @@ -866,6 +866,12 @@ These environment variables affect the behavior of the pilot-discoveryIf 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 diff --git a/data/analysis.yaml b/data/analysis.yaml index df7ce40182..a770744063 100644 --- a/data/analysis.yaml +++ b/data/analysis.yaml @@ -353,3 +353,21 @@ messages: level: Warning description: "Virtual IP addresses are required for ports serving TCP (or unset) protocol" template: "ServiceEntry addresses are required for this protocol." + + - name: "DeprecatedAnnotation" + code: IST0135 + level: Info + description: "A resource is using a deprecated Istio annotation." + template: "Annotation %q has been deprecated and may not work in future Istio versions." + args: + - name: annotation + type: string + + - name: "AlphaAnnotation" + code: IST0136 + level: Info + description: "An Istio annotation may not be suitable for production." + template: "Annotation %q is part of an alpha-phase feature and may be incompletely supported." + args: + - name: annotation + type: string