From b6815be0740dafe9e2114b89b853811141b50925 Mon Sep 17 00:00:00 2001 From: Kim Sondrup Date: Fri, 24 May 2024 04:40:04 +0200 Subject: [PATCH] Fix typo in closing tag for some code blocks (#3214) --- mesh/v1alpha1/istio.mesh.v1alpha1.pb.html | 2 +- mesh/v1alpha1/proxy.pb.go | 2 +- mesh/v1alpha1/proxy.proto | 2 +- security/v1/authorization_policy.pb.go | 4 ++-- security/v1/authorization_policy.proto | 4 ++-- security/v1beta1/authorization_policy.pb.go | 4 ++-- security/v1beta1/authorization_policy.pb.html | 4 ++-- security/v1beta1/authorization_policy.proto | 4 ++-- 8 files changed, 13 insertions(+), 13 deletions(-) diff --git a/mesh/v1alpha1/istio.mesh.v1alpha1.pb.html b/mesh/v1alpha1/istio.mesh.v1alpha1.pb.html index cfb44d8b552..734d20eda18 100644 --- a/mesh/v1alpha1/istio.mesh.v1alpha1.pb.html +++ b/mesh/v1alpha1/istio.mesh.v1alpha1.pb.html @@ -3955,7 +3955,7 @@

ProxyConfig.ProxyHeaders

envoyDebugHeaders EnvoyDebugHeaders -

Controls various X-Envoy-* headers, such as X-Envoy-Overloaded and `X-Envoy-Upstream-Service-Time. If enabled, +

Controls various X-Envoy-* headers, such as X-Envoy-Overloaded and X-Envoy-Upstream-Service-Time. If enabled, these headers will be included. If disabled, these headers will not be set. If they are already present, they will be preserved. See the Envoy documentation for more details. diff --git a/mesh/v1alpha1/proxy.pb.go b/mesh/v1alpha1/proxy.pb.go index f7d686ef3f5..e44bbdf42b5 100644 --- a/mesh/v1alpha1/proxy.pb.go +++ b/mesh/v1alpha1/proxy.pb.go @@ -2289,7 +2289,7 @@ type ProxyConfig_ProxyHeaders struct { // If disabled, this header will not be set. If it is already present, it will be preserved. // This header is enabled by default if not configured. AttemptCount *ProxyConfig_ProxyHeaders_AttemptCount `protobuf:"bytes,4,opt,name=attempt_count,json=attemptCount,proto3" json:"attempt_count,omitempty"` - // Controls various `X-Envoy-*` headers, such as `X-Envoy-Overloaded` and `X-Envoy-Upstream-Service-Time. If enabled, + // Controls various `X-Envoy-*` headers, such as `X-Envoy-Overloaded` and `X-Envoy-Upstream-Service-Time`. If enabled, // these headers will be included. // If disabled, these headers will not be set. If they are already present, they will be preserved. // See the [Envoy documentation](https://www.envoyproxy.io/docs/envoy/latest/api-v3/extensions/filters/http/router/v3/router.proto#envoy-v3-api-field-extensions-filters-http-router-v3-router-suppress-envoy-headers) for more details. diff --git a/mesh/v1alpha1/proxy.proto b/mesh/v1alpha1/proxy.proto index e1ec3e8b59d..a264c9aebff 100644 --- a/mesh/v1alpha1/proxy.proto +++ b/mesh/v1alpha1/proxy.proto @@ -680,7 +680,7 @@ message ProxyConfig { // If disabled, this header will not be set. If it is already present, it will be preserved. // This header is enabled by default if not configured. AttemptCount attempt_count = 4; - // Controls various `X-Envoy-*` headers, such as `X-Envoy-Overloaded` and `X-Envoy-Upstream-Service-Time. If enabled, + // Controls various `X-Envoy-*` headers, such as `X-Envoy-Overloaded` and `X-Envoy-Upstream-Service-Time`. If enabled, // these headers will be included. // If disabled, these headers will not be set. If they are already present, they will be preserved. // See the [Envoy documentation](https://www.envoyproxy.io/docs/envoy/latest/api-v3/extensions/filters/http/router/v3/router.proto#envoy-v3-api-field-extensions-filters-http-router-v3-router-suppress-envoy-headers) for more details. diff --git a/security/v1/authorization_policy.pb.go b/security/v1/authorization_policy.pb.go index e5ad8d703e9..97f1fa2ccc3 100644 --- a/security/v1/authorization_policy.pb.go +++ b/security/v1/authorization_policy.pb.go @@ -813,8 +813,8 @@ type Operation struct { // - `/foo/{*}` matches `/foo/bar` but not `/foo/bar/baz` // - `/foo/{**}/` matches `/foo/bar/`, `/foo/bar/baz.txt`, and `/foo//` but not `/foo/bar` // - `/foo/{*}/bar/{**}` matches `/foo/buzz/bar/` and `/foo/buzz/bar/baz` - // - `/*/baz/{*}“ is not a valid path template since it includes `*` outside of a supported operator - // - `/**/baz/{*}“ is not a valid path template since it includes `**` outside of a supported operator + // - `/*/baz/{*}` is not a valid path template since it includes `*` outside of a supported operator + // - `/**/baz/{*}` is not a valid path template since it includes `**` outside of a supported operator // - `/{**}/foo/{*}` is not a valid path template since `{**}` is not the last operator // - `/foo/{*}.txt` is invalid since there are characters other than `{*}` in the path segment // diff --git a/security/v1/authorization_policy.proto b/security/v1/authorization_policy.proto index d5008f98e00..36724c94518 100644 --- a/security/v1/authorization_policy.proto +++ b/security/v1/authorization_policy.proto @@ -531,8 +531,8 @@ message Operation { // - `/foo/{*}` matches `/foo/bar` but not `/foo/bar/baz` // - `/foo/{**}/` matches `/foo/bar/`, `/foo/bar/baz.txt`, and `/foo//` but not `/foo/bar` // - `/foo/{*}/bar/{**}` matches `/foo/buzz/bar/` and `/foo/buzz/bar/baz` - // - `/*/baz/{*}`` is not a valid path template since it includes `*` outside of a supported operator - // - `/**/baz/{*}`` is not a valid path template since it includes `**` outside of a supported operator + // - `/*/baz/{*}` is not a valid path template since it includes `*` outside of a supported operator + // - `/**/baz/{*}` is not a valid path template since it includes `**` outside of a supported operator // - `/{**}/foo/{*}` is not a valid path template since `{**}` is not the last operator // - `/foo/{*}.txt` is invalid since there are characters other than `{*}` in the path segment // diff --git a/security/v1beta1/authorization_policy.pb.go b/security/v1beta1/authorization_policy.pb.go index 51906a6cd63..497d15e899c 100644 --- a/security/v1beta1/authorization_policy.pb.go +++ b/security/v1beta1/authorization_policy.pb.go @@ -812,8 +812,8 @@ type Operation struct { // - `/foo/{*}` matches `/foo/bar` but not `/foo/bar/baz` // - `/foo/{**}/` matches `/foo/bar/`, `/foo/bar/baz.txt`, and `/foo//` but not `/foo/bar` // - `/foo/{*}/bar/{**}` matches `/foo/buzz/bar/` and `/foo/buzz/bar/baz` - // - `/*/baz/{*}“ is not a valid path template since it includes `*` outside of a supported operator - // - `/**/baz/{*}“ is not a valid path template since it includes `**` outside of a supported operator + // - `/*/baz/{*}` is not a valid path template since it includes `*` outside of a supported operator + // - `/**/baz/{*}` is not a valid path template since it includes `**` outside of a supported operator // - `/{**}/foo/{*}` is not a valid path template since `{**}` is not the last operator // - `/foo/{*}.txt` is invalid since there are characters other than `{*}` in the path segment // diff --git a/security/v1beta1/authorization_policy.pb.html b/security/v1beta1/authorization_policy.pb.html index 89d487ebade..9274fd22660 100644 --- a/security/v1beta1/authorization_policy.pb.html +++ b/security/v1beta1/authorization_policy.pb.html @@ -610,8 +610,8 @@

Operation

  • /foo/{*} matches /foo/bar but not /foo/bar/baz
  • /foo/{**}/ matches /foo/bar/, /foo/bar/baz.txt, and /foo// but not /foo/bar
  • /foo/{*}/bar/{**} matches /foo/buzz/bar/ and /foo/buzz/bar/baz
  • -
  • /*/baz/{*}`` is not a valid path template since it includes *` outside of a supported operator
  • -
  • /**/baz/{*}`` is not a valid path template since it includes **` outside of a supported operator
  • +
  • /*/baz/{*} is not a valid path template since it includes * outside of a supported operator
  • +
  • /**/baz/{*} is not a valid path template since it includes ** outside of a supported operator
  • /{**}/foo/{*} is not a valid path template since {**} is not the last operator
  • /foo/{*}.txt is invalid since there are characters other than {*} in the path segment
  • diff --git a/security/v1beta1/authorization_policy.proto b/security/v1beta1/authorization_policy.proto index 338d255d5d0..8dfb512be38 100644 --- a/security/v1beta1/authorization_policy.proto +++ b/security/v1beta1/authorization_policy.proto @@ -530,8 +530,8 @@ message Operation { // - `/foo/{*}` matches `/foo/bar` but not `/foo/bar/baz` // - `/foo/{**}/` matches `/foo/bar/`, `/foo/bar/baz.txt`, and `/foo//` but not `/foo/bar` // - `/foo/{*}/bar/{**}` matches `/foo/buzz/bar/` and `/foo/buzz/bar/baz` - // - `/*/baz/{*}`` is not a valid path template since it includes `*` outside of a supported operator - // - `/**/baz/{*}`` is not a valid path template since it includes `**` outside of a supported operator + // - `/*/baz/{*}` is not a valid path template since it includes `*` outside of a supported operator + // - `/**/baz/{*}` is not a valid path template since it includes `**` outside of a supported operator // - `/{**}/foo/{*}` is not a valid path template since `{**}` is not the last operator // - `/foo/{*}.txt` is invalid since there are characters other than `{*}` in the path segment //