mirror of https://github.com/istio/istio.io.git
Enable ops/configuration/mesh/config-resource-ready (#11784)
* Enable ops/configuration/mesh/config-resource-ready Requires another env variable to be set * Some doc updates with new env var
This commit is contained in:
parent
3b1b615d0a
commit
ec2ee29c7a
|
|
@ -28,10 +28,10 @@ status, which Istio updates as it propagates configuration changes.
|
||||||
## Before you begin
|
## Before you begin
|
||||||
|
|
||||||
This feature is off by default. Enable the `status` field as part of Istio
|
This feature is off by default. Enable the `status` field as part of Istio
|
||||||
installation using the following command.
|
installation using the following command. You must also enable `config_distribution_tracking`.
|
||||||
|
|
||||||
{{< text syntax=bash snip_id=install_with_enable_status >}}
|
{{< text syntax=bash snip_id=install_with_enable_status >}}
|
||||||
$ istioctl install --set values.pilot.env.PILOT_ENABLE_STATUS=true --set values.global.istiod.enableAnalysis=true
|
$ istioctl install --set values.pilot.env.PILOT_ENABLE_STATUS=true --set values.pilot.env.PILOT_ENABLE_CONFIG_DISTRIBUTION_TRACKING=true --set values.global.istiod.enableAnalysis=true
|
||||||
{{< /text >}}
|
{{< /text >}}
|
||||||
|
|
||||||
## Wait for resource readiness
|
## Wait for resource readiness
|
||||||
|
|
|
||||||
|
|
@ -21,7 +21,7 @@
|
||||||
####################################################################################################
|
####################################################################################################
|
||||||
|
|
||||||
snip_install_with_enable_status() {
|
snip_install_with_enable_status() {
|
||||||
istioctl install --set values.pilot.env.PILOT_ENABLE_STATUS=true --set values.global.istiod.enableAnalysis=true
|
istioctl install --set values.pilot.env.PILOT_ENABLE_STATUS=true --set values.pilot.env.PILOT_ENABLE_CONFIG_DISTRIBUTION_TRACKING=true --set values.global.istiod.enableAnalysis=true
|
||||||
}
|
}
|
||||||
|
|
||||||
snip_apply_and_wait_for_httpbin_vs() {
|
snip_apply_and_wait_for_httpbin_vs() {
|
||||||
|
|
|
||||||
|
|
@ -16,10 +16,11 @@ control plane revision.
|
||||||
|
|
||||||
Istio 1.6 and later provides information about the propagation of configuration
|
Istio 1.6 and later provides information about the propagation of configuration
|
||||||
changes through the mesh, using the `status` field of the resource.
|
changes through the mesh, using the `status` field of the resource.
|
||||||
Status is disabled by default, and can be enabled during install with:
|
Status is disabled by default, and can be enabled during install with
|
||||||
|
(you must also enable `config_distribution_tracking`):
|
||||||
|
|
||||||
{{< text bash >}}
|
{{< text bash >}}
|
||||||
$ istioctl install --set values.pilot.env.PILOT_ENABLE_STATUS=true --set values.global.istiod.enableAnalysis=true
|
$ istioctl install --set values.pilot.env.PILOT_ENABLE_STATUS=true --set values.pilot.env.PILOT_ENABLE_CONFIG_DISTRIBUTION_TRACKING=true --set values.global.istiod.enableAnalysis=true
|
||||||
{{< /text >}}
|
{{< /text >}}
|
||||||
|
|
||||||
The `status` field contains the state of a resource's configuration with various
|
The `status` field contains the state of a resource's configuration with various
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue