mirror of https://github.com/istio/istio.io.git
Automator: update istio.io@ reference docs (#8813)
This commit is contained in:
parent
1bf9d85886
commit
e14ae5b4b2
|
@ -2567,6 +2567,11 @@ istioctl x version --xds-label istio.io/rev=default
|
|||
<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 ``)</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code>--istioNamespace <string></code></td>
|
||||
<td><code>-i</code></td>
|
||||
<td>Istio system namespace (default `istio-system`)</td>
|
||||
|
@ -2582,11 +2587,6 @@ istioctl x version --xds-label istio.io/rev=default
|
|||
<td>Config namespace (default ``)</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code>--resource-version <string></code></td>
|
||||
<td></td>
|
||||
<td>Wait for a specific version of config to become current, rather than using whatever is latest in kubernetes (default ``)</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code>--revision <string></code></td>
|
||||
<td></td>
|
||||
<td>Control plane revision (default ``)</td>
|
||||
|
@ -5239,6 +5239,12 @@ These environment variables affect the behavior of the <code>istioctl</code> com
|
|||
<td>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</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code>PILOT_STATUS_MAX_WORKERS</code></td>
|
||||
<td>Integer</td>
|
||||
<td><code>100</code></td>
|
||||
<td>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.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code>PILOT_STATUS_QPS</code></td>
|
||||
<td>Floating-Point</td>
|
||||
<td><code>100</code></td>
|
||||
|
|
|
@ -458,6 +458,12 @@ These environment variables affect the behavior of the <code>operator</code> com
|
|||
<td>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</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code>PILOT_STATUS_MAX_WORKERS</code></td>
|
||||
<td>Integer</td>
|
||||
<td><code>100</code></td>
|
||||
<td>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.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code>PILOT_STATUS_QPS</code></td>
|
||||
<td>Floating-Point</td>
|
||||
<td><code>100</code></td>
|
||||
|
|
|
@ -1023,6 +1023,12 @@ These environment variables affect the behavior of the <code>pilot-agent</code>
|
|||
<td>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</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code>PILOT_STATUS_MAX_WORKERS</code></td>
|
||||
<td>Integer</td>
|
||||
<td><code>100</code></td>
|
||||
<td>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.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code>PILOT_STATUS_QPS</code></td>
|
||||
<td>Floating-Point</td>
|
||||
<td><code>100</code></td>
|
||||
|
|
|
@ -866,6 +866,12 @@ These environment variables affect the behavior of the <code>pilot-discovery</co
|
|||
<td>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</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code>PILOT_STATUS_MAX_WORKERS</code></td>
|
||||
<td>Integer</td>
|
||||
<td><code>100</code></td>
|
||||
<td>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.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code>PILOT_STATUS_QPS</code></td>
|
||||
<td>Floating-Point</td>
|
||||
<td><code>100</code></td>
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue