Fix indentations in 2 docs (#12365)

* Fix indentation  in /announcing-1.16/change-notes/index.md

* Fix indentations
This commit is contained in:
Michael 2022-12-14 16:31:08 +08:00 committed by GitHub
parent 06cd53a239
commit 5acb519aa7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 21 additions and 21 deletions

View File

@ -63,17 +63,17 @@ If a `WasmPlugin` is created in a specific namespace besides `istio-system`, the
1. Test `/productpage` without credentials 1. Test `/productpage` without credentials
{{< text bash >}} {{< text bash >}}
$ curl -s -o /dev/null -w "%{http_code}" "http://$INGRESS_HOST:$INGRESS_PORT/productpage" $ curl -s -o /dev/null -w "%{http_code}" "http://$INGRESS_HOST:$INGRESS_PORT/productpage"
401 401
{{< /text >}} {{< /text >}}
1. Test `/productpage` with credentials 1. Test `/productpage` with credentials
{{< text bash >}} {{< text bash >}}
$ curl -s -o /dev/null -w "%{http_code}" -H "Authorization: Basic YWRtaW4zOmFkbWluMw==" "http://$INGRESS_HOST:$INGRESS_PORT/productpage" $ curl -s -o /dev/null -w "%{http_code}" -H "Authorization: Basic YWRtaW4zOmFkbWluMw==" "http://$INGRESS_HOST:$INGRESS_PORT/productpage"
200 200
{{< /text >}} {{< /text >}}
For more example usage of the `WasmPlugin` API, please take a look at the [API reference](/docs/reference/config/proxy_extensions/wasm-plugin/). For more example usage of the `WasmPlugin` API, please take a look at the [API reference](/docs/reference/config/proxy_extensions/wasm-plugin/).

View File

@ -57,17 +57,17 @@ These notices describe functionality that will be removed in a future release ac
- **Improved** Pilot will now load its DNS serving certificate from well known locations: - **Improved** Pilot will now load its DNS serving certificate from well known locations:
{{< text plain >}} {{< text plain >}}
/var/run/secrets/istiod/tls/tls.crt /var/run/secrets/istiod/tls/tls.crt
/var/run/secrets/istiod/tls/tls.key /var/run/secrets/istiod/tls/tls.key
/var/run/secrets/istiod/ca/root-cert.pem /var/run/secrets/istiod/ca/root-cert.pem
{{< /text >}} {{< /text >}}
The CA path will alternatively be loaded from `/var/run/secrets/tls/ca.crt`. The CA path will alternatively be loaded from `/var/run/secrets/tls/ca.crt`.
It also automatically loads any secret called `istiod-tls` and the `istio-root-ca-configmap` into those paths. It also automatically loads any secret called `istiod-tls` and the `istio-root-ca-configmap` into those paths.
This method is preferred to use these well known paths than to set the TLS arguments. This method is preferred to use these well known paths than to set the TLS arguments.
This will allow for an easier installation process for `istio-csr` as well as any other external issuer that needs to modify This will allow for an easier installation process for `istio-csr` as well as any other external issuer that needs to modify
the Pilot DNS serving certificate. ([Issue #36916](https://github.com/istio/istio/issues/36916)) the Pilot DNS serving certificate. ([Issue #36916](https://github.com/istio/istio/issues/36916))
- **Updated** dependency in Envoy to properly parse JWTs with negative values for `exp`, `nbf`, or `iat` fields. - **Updated** dependency in Envoy to properly parse JWTs with negative values for `exp`, `nbf`, or `iat` fields.
@ -77,8 +77,8 @@ the Pilot DNS serving certificate. ([Issue #36916](https://github.com/istio/isti
instead of the Wasm-based extension. This improves CPU overhead and memory instead of the Wasm-based extension. This improves CPU overhead and memory
usage of the feature. Custom dimensions no longer require regex and bootstrap usage of the feature. Custom dimensions no longer require regex and bootstrap
annotations. If customizations use CEL expressions with Wasm attributes, they annotations. If customizations use CEL expressions with Wasm attributes, they
are likely to be affected. This change can be disabled by setting the control are likely to be affected. This change can be enabled by setting the control
plane feature flag `TELEMETRY_USE_NATIVE_STATS` to `false`. plane feature flag `TELEMETRY_USE_NATIVE_STATS` to `true`.
- **Added** support for use of the OpenTelemetry tracing provider with the Telemetry API. - **Added** support for use of the OpenTelemetry tracing provider with the Telemetry API.
([Issue #40027](https://github.com/istio/istio/issues/40027)) ([Issue #40027](https://github.com/istio/istio/issues/40027))
@ -116,7 +116,7 @@ the Pilot DNS serving certificate. ([Issue #36916](https://github.com/istio/isti
- **Fixed** an issue when `auto.sidecar-injector.istio.io` `namespaceSelector` caused problems with cluster maintenance. ([Issue #40984](https://github.com/istio/istio/issues/40984)) - **Fixed** an issue when `auto.sidecar-injector.istio.io` `namespaceSelector` caused problems with cluster maintenance. ([Issue #40984](https://github.com/istio/istio/issues/40984))
- **Fixed** an issue issue when deleting a custom gateway using an Istio Operator custom resource, other gateways are restarted. ([Issue #40577](https://github.com/istio/istio/issues/40577)) - **Fixed** an issue when deleting a custom gateway using an Istio Operator custom resource, other gateways are restarted. ([Issue #40577](https://github.com/istio/istio/issues/40577))
- **Fixed** an issue in Istio Operator where CNI is not created properly when `cni.resourceQuotas` is enabled due to missing RBAC permissions. ([Issue #41159](https://github.com/istio/istio/issues/41159)) - **Fixed** an issue in Istio Operator where CNI is not created properly when `cni.resourceQuotas` is enabled due to missing RBAC permissions. ([Issue #41159](https://github.com/istio/istio/issues/41159))