diff --git a/Makefile b/Makefile index c235b6ddd43..76c3e0d46bf 100644 --- a/Makefile +++ b/Makefile @@ -536,21 +536,21 @@ sds-distroless-docker: $(SDS_OUTPUT_DIR)/sds-linux-$(GOARCH) $(SDS_OUTPUT_DIR)/D # Envoy init (BASE/SIDECAR) #---------------------------------------------------------------------------------- -# ENVOYINIT_DIR=projects/envoyinit/cmd -# ENVOYINIT_SOURCES=$(call get_sources,$(ENVOYINIT_DIR)) -# ENVOYINIT_OUTPUT_DIR=$(OUTPUT_DIR)/$(ENVOYINIT_DIR) +ENVOYINIT_DIR=projects/envoyinit/cmd +ENVOYINIT_SOURCES=$(call get_sources,$(ENVOYINIT_DIR)) +ENVOYINIT_OUTPUT_DIR=$(OUTPUT_DIR)/$(ENVOYINIT_DIR) -# $(ENVOYINIT_OUTPUT_DIR)/envoyinit-linux-$(GOARCH): $(ENVOYINIT_SOURCES) -# $(GO_BUILD_FLAGS) GOOS=linux go build -ldflags='$(LDFLAGS)' -gcflags='$(GCFLAGS)' -o $@ $(ENVOYINIT_DIR)/main.go +$(ENVOYINIT_OUTPUT_DIR)/envoyinit-linux-$(GOARCH): $(ENVOYINIT_SOURCES) + $(GO_BUILD_FLAGS) GOOS=linux go build -ldflags='$(LDFLAGS)' -gcflags='$(GCFLAGS)' -o $@ $(ENVOYINIT_DIR)/main.go -# .PHONY: envoyinit -# envoyinit: $(ENVOYINIT_OUTPUT_DIR)/envoyinit-linux-$(GOARCH) +.PHONY: envoyinit +envoyinit: $(ENVOYINIT_OUTPUT_DIR)/envoyinit-linux-$(GOARCH) -# $(ENVOYINIT_OUTPUT_DIR)/Dockerfile.envoyinit: $(ENVOYINIT_DIR)/Dockerfile.envoyinit -# cp $< $@ +$(ENVOYINIT_OUTPUT_DIR)/Dockerfile.envoyinit: $(ENVOYINIT_DIR)/Dockerfile.envoyinit + cp $< $@ -# $(ENVOYINIT_OUTPUT_DIR)/docker-entrypoint.sh: $(ENVOYINIT_DIR)/docker-entrypoint.sh -# cp $< $@ +$(ENVOYINIT_OUTPUT_DIR)/docker-entrypoint.sh: $(ENVOYINIT_DIR)/docker-entrypoint.sh + cp $< $@ .PHONY: gloo-envoy-wrapper-docker gloo-envoy-wrapper-docker: $(ENVOYINIT_OUTPUT_DIR)/envoyinit-linux-$(GOARCH) $(ENVOYINIT_OUTPUT_DIR)/Dockerfile.envoyinit $(ENVOYINIT_OUTPUT_DIR)/docker-entrypoint.sh @@ -559,8 +559,8 @@ gloo-envoy-wrapper-docker: $(ENVOYINIT_OUTPUT_DIR)/envoyinit-linux-$(GOARCH) $(E --build-arg ENVOY_IMAGE=$(ENVOY_GLOO_IMAGE) \ -t $(IMAGE_REGISTRY)/gloo-envoy-wrapper:$(VERSION) -# $(ENVOYINIT_OUTPUT_DIR)/Dockerfile.envoyinit.distroless: $(ENVOYINIT_DIR)/Dockerfile.envoyinit.distroless -# cp $< $@ +$(ENVOYINIT_OUTPUT_DIR)/Dockerfile.envoyinit.distroless: $(ENVOYINIT_DIR)/Dockerfile.envoyinit.distroless + cp $< $@ # Explicitly specify the base image is amd64 as we only build the amd64 flavour of gloo envoy .PHONY: gloo-envoy-wrapper-distroless-docker @@ -763,7 +763,7 @@ docker-push-%: .PHONY: docker-standard docker-standard: check-go-version ## Build docker images (standard only) docker-standard: gloo-docker -# docker-standard: gloo-envoy-wrapper-docker +docker-standard: gloo-envoy-wrapper-docker docker-standard: sds-docker .PHONY: docker-distroless @@ -905,7 +905,7 @@ kind-reload-gloo-envoy-wrapper: .PHONY: kind-build-and-load-standard kind-build-and-load-standard: kind-build-and-load-gloo -# kind-build-and-load-standard: kind-build-and-load-gloo-envoy-wrapper +kind-build-and-load-standard: kind-build-and-load-gloo-envoy-wrapper # kind-build-and-load-standard: kind-build-and-load-sds # kind-build-and-load-standard: kind-build-and-load-certgen diff --git a/install/helm/gloo/templates/43-gatewayparameters.yaml b/install/helm/gloo/templates/43-gatewayparameters.yaml index 57e9608eb27..625ef01aeeb 100644 --- a/install/helm/gloo/templates/43-gatewayparameters.yaml +++ b/install/helm/gloo/templates/43-gatewayparameters.yaml @@ -52,9 +52,13 @@ spec: floatingUserId: {{ hasKey $global.securitySettings "floatingUserId" | ternary $global.securitySettings.floatingUserId (or $gg.floatingUserId false) }} envoyContainer: image: - registry: quay.io/solo-io - repository: gloo-envoy-wrapper - tag: 1.18.5 + {{- $envoyImage := dict -}} + {{- if $gg.envoyContainer -}} + {{- if $gg.envoyContainer.image -}} + {{- $envoyImage = $gg.envoyContainer.image -}} + {{- end -}}{{/* if $gg.envoyContainer.image */}} + {{- end }}{{/* if $gg.envoyContainer */}} + {{- merge $envoyImage $global.image | include "gloo-gateway.gatewayParametersImage" | nindent 8 }} {{- if $gg.envoyContainer -}} {{- if $gg.envoyContainer.securityContext }} securityContext: diff --git a/install/helm/gloo/values-template.yaml b/install/helm/gloo/values-template.yaml index 7c85de9f52f..318e5e810d0 100644 --- a/install/helm/gloo/values-template.yaml +++ b/install/helm/gloo/values-template.yaml @@ -11,9 +11,7 @@ kubeGateway: glooGateway: envoyContainer: image: - registry: quay.io/solo-io repository: gloo-envoy-wrapper - tag: 1.18.5 securityContext: allowPrivilegeEscalation: false readOnlyRootFilesystem: true diff --git a/pkg/utils/envoyutils/admincli/client.go b/pkg/utils/envoyutils/admincli/client.go index cd37affcc44..962f5b0e39c 100644 --- a/pkg/utils/envoyutils/admincli/client.go +++ b/pkg/utils/envoyutils/admincli/client.go @@ -17,7 +17,6 @@ import ( "github.com/solo-io/gloo/pkg/utils/kubeutils/kubectl" "github.com/solo-io/gloo/pkg/utils/kubeutils/portforward" - "github.com/solo-io/gloo/projects/gloo/pkg/defaults" ) const ( @@ -32,6 +31,8 @@ const ( ServerInfoPath = "server_info" ) +var envoyAdminPort uint32 = 19000 + // DumpOptions should have flags for any kind of underlying optional // filtering or inclusion of Envoy dump data, such as including EDS, filters, etc. type DumpOptions struct { @@ -56,7 +57,7 @@ func NewClient() *Client { curlOptions: []curl.Option{ curl.WithScheme("http"), curl.WithHost("127.0.0.1"), - curl.WithPort(int(defaults.EnvoyAdminPort)), + curl.WithPort(int(envoyAdminPort)), // 3 retries, exponential back-off, 10 second max curl.WithRetries(3, 0, 10), }, @@ -75,7 +76,7 @@ func NewPortForwardedClient(ctx context.Context, proxySelector, namespace string // 1. Open a port-forward to the Kubernetes Deployment, so that we can query the Envoy Admin API directly portForwarder, err := kubectl.NewCli().StartPortForward(ctx, selector, - portforward.WithRemotePort(int(defaults.EnvoyAdminPort))) + portforward.WithRemotePort(int(envoyAdminPort))) if err != nil { return nil, nil, err } diff --git a/pkg/utils/envoyutils/bootstrap/bootstrap.go b/pkg/utils/envoyutils/bootstrap/bootstrap.go index 02d6454ee1d..6d22d3f519b 100644 --- a/pkg/utils/envoyutils/bootstrap/bootstrap.go +++ b/pkg/utils/envoyutils/bootstrap/bootstrap.go @@ -17,7 +17,7 @@ import ( "github.com/golang/protobuf/proto" anypb "github.com/golang/protobuf/ptypes/any" "github.com/rotisserie/eris" - "github.com/solo-io/gloo/projects/gloo/pkg/utils" + "github.com/solo-io/gloo/projects/gateway2/utils" envoycache "github.com/solo-io/solo-kit/pkg/api/v1/control-plane/cache" ) diff --git a/pkg/utils/envoyutils/bootstrap/bootstrap_test.go b/pkg/utils/envoyutils/bootstrap/bootstrap_test.go index bb2791b58fc..7aff40bbb94 100644 --- a/pkg/utils/envoyutils/bootstrap/bootstrap_test.go +++ b/pkg/utils/envoyutils/bootstrap/bootstrap_test.go @@ -3,8 +3,8 @@ package bootstrap import ( "context" - envoytransformation "github.com/solo-io/gloo/projects/gloo/pkg/api/external/envoy/extensions/transformation" - "github.com/solo-io/gloo/projects/gloo/pkg/utils" + envoytransformation "github.com/solo-io/envoy-gloo/go/config/filter/http/transformation/v2" + "github.com/solo-io/gloo/projects/gateway2/utils" envoycache "github.com/solo-io/solo-kit/pkg/api/v1/control-plane/cache" "github.com/solo-io/solo-kit/pkg/api/v1/control-plane/resource" diff --git a/pkg/utils/envoyutils/validation/validation.go b/pkg/utils/envoyutils/validation/validation.go index be766a83c0d..7c0eb255405 100644 --- a/pkg/utils/envoyutils/validation/validation.go +++ b/pkg/utils/envoyutils/validation/validation.go @@ -7,7 +7,6 @@ import ( "github.com/solo-io/gloo/pkg/utils/envoyutils/bootstrap" "github.com/solo-io/gloo/pkg/utils/envutils" "github.com/solo-io/gloo/projects/envoyinit/pkg/runner" - "github.com/solo-io/gloo/projects/gloo/constants" "github.com/solo-io/go-utils/contextutils" envoycache "github.com/solo-io/solo-kit/pkg/api/v1/control-plane/cache" ) @@ -20,10 +19,13 @@ const ( // projects/envoyinit/cmd/Dockerfile.envoyinit // https://github.com/solo-io/envoy-gloo/blob/v1.30.4-patch5/ci/Dockerfile defaultEnvoyPath = "/usr/local/bin/envoy" + + // only usage, copied from projects/gloo/constants/envoy.go + EnvoyBinaryEnv = "ENVOY_BINARY" ) func ValidateBootstrap(ctx context.Context, bootstrap string) error { - return runner.RunEnvoyValidate(ctx, envutils.GetOrDefault(constants.EnvoyBinaryEnv, defaultEnvoyPath, false), bootstrap) + return runner.RunEnvoyValidate(ctx, envutils.GetOrDefault(EnvoyBinaryEnv, defaultEnvoyPath, false), bootstrap) } // ValidateSnapshot accepts an xDS snapshot, clones it, and does the necessary diff --git a/projects/envoyinit/hack/filter_types/filter_types.gen.go b/projects/envoyinit/hack/filter_types/filter_types.gen.go index edd19152b7b..d2227f895e6 100644 --- a/projects/envoyinit/hack/filter_types/filter_types.gen.go +++ b/projects/envoyinit/hack/filter_types/filter_types.gen.go @@ -10,7 +10,7 @@ // See the License for the specific language governing permissions and // limitations under the License. -// GENERATED FILE -- DO NOT EDIT +// (PREVIOUSLY WAS A) GENERATED FILE -- DO NOT EDIT package filter_types @@ -328,42 +328,10 @@ import ( _ "github.com/envoyproxy/go-control-plane/ratelimit/service/ratelimit/v3" // gloo filter types - _ "github.com/solo-io/gloo/projects/gloo/pkg/api/external/envoy/annotations" - _ "github.com/solo-io/gloo/projects/gloo/pkg/api/external/envoy/api/v2/cluster" - _ "github.com/solo-io/gloo/projects/gloo/pkg/api/external/envoy/api/v2/core" - _ "github.com/solo-io/gloo/projects/gloo/pkg/api/external/envoy/api/v2/route" - _ "github.com/solo-io/gloo/projects/gloo/pkg/api/external/envoy/config/common/mutation_rules/v3" - _ "github.com/solo-io/gloo/projects/gloo/pkg/api/external/envoy/config/core/v3" - _ "github.com/solo-io/gloo/projects/gloo/pkg/api/external/envoy/config/filter/http/gzip/v2" - _ "github.com/solo-io/gloo/projects/gloo/pkg/api/external/envoy/config/filter/listener/tls_cipher_inspector/v3" - _ "github.com/solo-io/gloo/projects/gloo/pkg/api/external/envoy/config/matching/custom_matchers/server_name/v3" - _ "github.com/solo-io/gloo/projects/gloo/pkg/api/external/envoy/config/matching/inputs/cipher_detection_input/v3" - _ "github.com/solo-io/gloo/projects/gloo/pkg/api/external/envoy/config/route/v3" - _ "github.com/solo-io/gloo/projects/gloo/pkg/api/external/envoy/config/trace/v3" - _ "github.com/solo-io/gloo/projects/gloo/pkg/api/external/envoy/extensions/advanced_http" - _ "github.com/solo-io/gloo/projects/gloo/pkg/api/external/envoy/extensions/aws" - _ "github.com/solo-io/gloo/projects/gloo/pkg/api/external/envoy/extensions/cache/grpc" - _ "github.com/solo-io/gloo/projects/gloo/pkg/api/external/envoy/extensions/extauth" - _ "github.com/solo-io/gloo/projects/gloo/pkg/api/external/envoy/extensions/filters/http/buffer/v3" - _ "github.com/solo-io/gloo/projects/gloo/pkg/api/external/envoy/extensions/filters/http/csrf/v3" - _ "github.com/solo-io/gloo/projects/gloo/pkg/api/external/envoy/extensions/filters/http/ext_proc/v3" - _ "github.com/solo-io/gloo/projects/gloo/pkg/api/external/envoy/extensions/filters/http/graphql/v2" - _ "github.com/solo-io/gloo/projects/gloo/pkg/api/external/envoy/extensions/filters/http/jwt_authn/v3" - _ "github.com/solo-io/gloo/projects/gloo/pkg/api/external/envoy/extensions/filters/http/wasm/v3" - _ "github.com/solo-io/gloo/projects/gloo/pkg/api/external/envoy/extensions/http_path" - _ "github.com/solo-io/gloo/projects/gloo/pkg/api/external/envoy/extensions/jwt" - _ "github.com/solo-io/gloo/projects/gloo/pkg/api/external/envoy/extensions/proxylatency" - _ "github.com/solo-io/gloo/projects/gloo/pkg/api/external/envoy/extensions/transformation" - _ "github.com/solo-io/gloo/projects/gloo/pkg/api/external/envoy/extensions/transformation_ee" - _ "github.com/solo-io/gloo/projects/gloo/pkg/api/external/envoy/extensions/transformers/xslt" - _ "github.com/solo-io/gloo/projects/gloo/pkg/api/external/envoy/extensions/upstream_wait" - _ "github.com/solo-io/gloo/projects/gloo/pkg/api/external/envoy/extensions/waf" - _ "github.com/solo-io/gloo/projects/gloo/pkg/api/external/envoy/extensions/wasm/v3" - _ "github.com/solo-io/gloo/projects/gloo/pkg/api/external/envoy/extensions/xff_offset" - _ "github.com/solo-io/gloo/projects/gloo/pkg/api/external/envoy/service/ext_proc/v3" - _ "github.com/solo-io/gloo/projects/gloo/pkg/api/external/envoy/type" - _ "github.com/solo-io/gloo/projects/gloo/pkg/api/external/envoy/type/matcher/v3" - _ "github.com/solo-io/gloo/projects/gloo/pkg/api/external/envoy/type/metadata/v3" - _ "github.com/solo-io/gloo/projects/gloo/pkg/api/external/envoy/type/tracing/v3" - _ "github.com/solo-io/gloo/projects/gloo/pkg/api/external/envoy/type/v3" + _ "github.com/solo-io/envoy-gloo/go/config/filter/http/aws_lambda/v2" + _ "github.com/solo-io/envoy-gloo/go/config/filter/http/nats/streaming/v2" + _ "github.com/solo-io/envoy-gloo/go/config/filter/http/transformation/v2" + _ "github.com/solo-io/envoy-gloo/go/config/filter/http/upstream_wait/v2" + _ "github.com/solo-io/envoy-gloo/go/config/transformer/aws_lambda/v2" + _ "github.com/solo-io/envoy-gloo/go/type/streaming" ) diff --git a/projects/envoyinit/hack/filter_types/filter_types.go b/projects/envoyinit/hack/filter_types/filter_types.go index 37b0bf0e481..22bce29d364 100644 --- a/projects/envoyinit/hack/filter_types/filter_types.go +++ b/projects/envoyinit/hack/filter_types/filter_types.go @@ -10,23 +10,26 @@ // See the License for the specific language governing permissions and // limitations under the License. -//go:generate sh -c "echo '// Licensed under the Apache License, Version 2.0 (the \"License\");' > filter_types.gen.go" -//go:generate sh -c "echo '// you may not use this file except in compliance with the License.' >> filter_types.gen.go" -//go:generate sh -c "echo '// You may obtain a copy of the License at' >> filter_types.gen.go" -//go:generate sh -c "echo '//' >> filter_types.gen.go" -//go:generate sh -c "echo '// http://www.apache.org/licenses/LICENSE-2.0' >> filter_types.gen.go" -//go:generate sh -c "echo '//' >> filter_types.gen.go" -//go:generate sh -c "echo '// Unless required by applicable law or agreed to in writing, software' >> filter_types.gen.go" -//go:generate sh -c "echo '// distributed under the License is distributed on an \"AS IS\" BASIS,' >> filter_types.gen.go" -//go:generate sh -c "echo '// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.' >> filter_types.gen.go" -//go:generate sh -c "echo '// See the License for the specific language governing permissions and' >> filter_types.gen.go" -//go:generate sh -c "echo '// limitations under the License.\n' >> filter_types.gen.go" -//go:generate sh -c "echo '// GENERATED FILE -- DO NOT EDIT\n' >> filter_types.gen.go" -//go:generate sh -c "echo 'package filter_types\n\nimport (' >> filter_types.gen.go" -//go:generate sh -c "go list github.com/envoyproxy/go-control-plane/... | grep 'v[3-9]' | xargs -n1 -I{} echo '\t_ \"{}\"' >> filter_types.gen.go" -//go:generate sh -c "echo '\n\t// gloo filter types' >> filter_types.gen.go" -//go:generate sh -c "go list github.com/solo-io/gloo/projects/gloo/pkg/api/external/envoy/... | xargs -n1 -I{} echo '\t_ \"{}\"' >> filter_types.gen.go" -//go:generate sh -c "echo ')' >> filter_types.gen.go" +// TODO: commenting out go generate for now, it can't exist until we figure out how to get the types from within +// the correct version of go-control-plane; see: https://github.com/kgateway-dev/kgateway/issues/10491 + +//xo:generate sh -c "echo '// Licensed under the Apache License, Version 2.0 (the \"License\");' > filter_types.gen.go" +//xo:generate sh -c "echo '// you may not use this file except in compliance with the License.' >> filter_types.gen.go" +//xo:generate sh -c "echo '// You may obtain a copy of the License at' >> filter_types.gen.go" +//xo:generate sh -c "echo '//' >> filter_types.gen.go" +//xo:generate sh -c "echo '// http://www.apache.org/licenses/LICENSE-2.0' >> filter_types.gen.go" +//xo:generate sh -c "echo '//' >> filter_types.gen.go" +//xo:generate sh -c "echo '// Unless required by applicable law or agreed to in writing, software' >> filter_types.gen.go" +//xo:generate sh -c "echo '// distributed under the License is distributed on an \"AS IS\" BASIS,' >> filter_types.gen.go" +//xo:generate sh -c "echo '// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.' >> filter_types.gen.go" +//xo:generate sh -c "echo '// See the License for the specific language governing permissions and' >> filter_types.gen.go" +//xo:generate sh -c "echo '// limitations under the License.\n' >> filter_types.gen.go" +//xo:generate sh -c "echo '// GENERATED FILE -- DO NOT EDIT\n' >> filter_types.gen.go" +//xo:generate sh -c "echo 'package filter_types\n\nimport (' >> filter_types.gen.go" +//xo:generate sh -c "go list github.com/envoyproxy/go-control-plane/... | grep 'v[3-9]' | xargs -n1 -I{} echo '\t_ \"{}\"' >> filter_types.gen.go" +//xo:generate sh -c "echo '\n\t// gloo filter types' >> filter_types.gen.go" +//xo:generate sh -c "go list github.com/solo-io/envoy-gloo/go/... | xargs -n1 -I{} echo '\t_ \"{}\"' >> filter_types.gen.go" +//xo:generate sh -c "echo ')' >> filter_types.gen.go" package filter_types diff --git a/projects/gateway2/deployer/deployer_test.go b/projects/gateway2/deployer/deployer_test.go index 061519883d1..a9b212678d9 100644 --- a/projects/gateway2/deployer/deployer_test.go +++ b/projects/gateway2/deployer/deployer_test.go @@ -38,322 +38,11 @@ import ( // *hard* tho due to the import tree, and best done in a followup. // _ "github.com/solo-io/gloo/projects/gloo/pkg/translator" // - // TODO: these imports are effectively copied over from envoyinit/filter_types.gen.go - // they are needed to register the proto types, in this case used in unmarshaling - // once envoyinit is readded, this should be a simple import elsewhere. - // Per note above, it sounds like we were getting this for free via the translator import as well - - _ "github.com/envoyproxy/go-control-plane/contrib/envoy/extensions/compression/qatzip/compressor/v3alpha" - _ "github.com/envoyproxy/go-control-plane/contrib/envoy/extensions/compression/qatzstd/compressor/v3alpha" - _ "github.com/envoyproxy/go-control-plane/contrib/envoy/extensions/config/v3alpha" - _ "github.com/envoyproxy/go-control-plane/contrib/envoy/extensions/filters/http/checksum/v3alpha" - _ "github.com/envoyproxy/go-control-plane/contrib/envoy/extensions/filters/http/dynamo/v3" - _ "github.com/envoyproxy/go-control-plane/contrib/envoy/extensions/filters/http/golang/v3alpha" - _ "github.com/envoyproxy/go-control-plane/contrib/envoy/extensions/filters/http/language/v3alpha" - _ "github.com/envoyproxy/go-control-plane/contrib/envoy/extensions/filters/http/squash/v3" - _ "github.com/envoyproxy/go-control-plane/contrib/envoy/extensions/filters/http/sxg/v3alpha" - _ "github.com/envoyproxy/go-control-plane/contrib/envoy/extensions/filters/network/client_ssl_auth/v3" - _ "github.com/envoyproxy/go-control-plane/contrib/envoy/extensions/filters/network/generic_proxy/codecs/kafka/v3" - _ "github.com/envoyproxy/go-control-plane/contrib/envoy/extensions/filters/network/golang/v3alpha" - _ "github.com/envoyproxy/go-control-plane/contrib/envoy/extensions/filters/network/kafka_broker/v3" - _ "github.com/envoyproxy/go-control-plane/contrib/envoy/extensions/filters/network/kafka_mesh/v3alpha" - _ "github.com/envoyproxy/go-control-plane/contrib/envoy/extensions/filters/network/mysql_proxy/v3" - _ "github.com/envoyproxy/go-control-plane/contrib/envoy/extensions/filters/network/postgres_proxy/v3alpha" - _ "github.com/envoyproxy/go-control-plane/contrib/envoy/extensions/filters/network/rocketmq_proxy/v3" - _ "github.com/envoyproxy/go-control-plane/contrib/envoy/extensions/filters/network/sip_proxy/router/v3alpha" - _ "github.com/envoyproxy/go-control-plane/contrib/envoy/extensions/filters/network/sip_proxy/tra/v3alpha" - _ "github.com/envoyproxy/go-control-plane/contrib/envoy/extensions/filters/network/sip_proxy/v3alpha" - _ "github.com/envoyproxy/go-control-plane/contrib/envoy/extensions/matching/input_matchers/hyperscan/v3alpha" - _ "github.com/envoyproxy/go-control-plane/contrib/envoy/extensions/network/connection_balance/dlb/v3alpha" - _ "github.com/envoyproxy/go-control-plane/contrib/envoy/extensions/private_key_providers/cryptomb/v3alpha" - _ "github.com/envoyproxy/go-control-plane/contrib/envoy/extensions/private_key_providers/qat/v3alpha" - _ "github.com/envoyproxy/go-control-plane/contrib/envoy/extensions/regex_engines/hyperscan/v3alpha" - _ "github.com/envoyproxy/go-control-plane/contrib/envoy/extensions/router/cluster_specifier/golang/v3alpha" - _ "github.com/envoyproxy/go-control-plane/contrib/envoy/extensions/vcl/v3alpha" - _ "github.com/envoyproxy/go-control-plane/envoy/admin/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/config/accesslog/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/config/bootstrap/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/config/cluster/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/config/common/key_value/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/config/common/matcher/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/config/common/mutation_rules/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/config/core/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/config/endpoint/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/config/grpc_credential/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/config/listener/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/config/metrics/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/config/overload/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/config/ratelimit/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/config/rbac/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/config/route/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/config/tap/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/config/trace/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/config/upstream/local_address_selector/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/data/accesslog/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/data/cluster/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/data/core/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/data/dns/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/data/tap/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/access_loggers/file/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/access_loggers/filters/cel/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/access_loggers/fluentd/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/access_loggers/grpc/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/access_loggers/open_telemetry/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/access_loggers/stream/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/access_loggers/wasm/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/bootstrap/internal_listener/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/clusters/aggregate/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/clusters/dynamic_forward_proxy/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/clusters/redis/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/common/async_files/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/common/aws/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/common/dynamic_forward_proxy/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/common/matching/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/common/ratelimit/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/common/tap/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/compression/brotli/compressor/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/compression/brotli/decompressor/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/compression/gzip/compressor/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/compression/gzip/decompressor/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/compression/zstd/compressor/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/compression/zstd/decompressor/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/config/validators/minimum_clusters/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/early_data/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/common/dependency/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/common/fault/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/common/matcher/action/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/common/set_filter_state/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/http/adaptive_concurrency/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/http/admission_control/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/http/alternate_protocols_cache/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/http/aws_lambda/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/http/aws_request_signing/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/http/bandwidth_limit/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/http/basic_auth/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/http/buffer/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/http/cache/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/http/cdn_loop/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/http/composite/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/http/compressor/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/http/connect_grpc_bridge/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/http/cors/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/http/credential_injector/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/http/csrf/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/http/custom_response/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/http/decompressor/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/http/dynamic_forward_proxy/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/http/ext_authz/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/http/ext_proc/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/http/fault/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/http/file_system_buffer/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/http/gcp_authn/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/http/geoip/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/http/grpc_field_extraction/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/http/grpc_http1_bridge/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/http/grpc_http1_reverse_bridge/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/http/grpc_json_transcoder/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/http/grpc_stats/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/http/grpc_web/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/http/gzip/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/http/header_mutation/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/http/header_to_metadata/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/http/health_check/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/http/ip_tagging/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/http/json_to_metadata/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/http/jwt_authn/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/http/kill_request/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/http/local_ratelimit/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/http/lua/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/http/oauth2/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/http/on_demand/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/http/original_src/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/http/proto_message_extraction/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/http/rate_limit_quota/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/http/ratelimit/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/http/rbac/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/http/router/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/http/set_filter_state/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/http/set_metadata/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/http/stateful_session/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/http/tap/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/http/thrift_to_metadata/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/http/upstream_codec/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/http/wasm/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/listener/http_inspector/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/listener/local_ratelimit/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/listener/original_dst/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/listener/original_src/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/listener/proxy_protocol/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/listener/tls_inspector/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/network/connection_limit/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/network/direct_response/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/network/dubbo_proxy/router/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/network/dubbo_proxy/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/network/echo/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/network/ext_authz/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/network/generic_proxy/action/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/network/generic_proxy/codecs/dubbo/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/network/generic_proxy/codecs/http1/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/network/generic_proxy/matcher/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/network/generic_proxy/router/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/network/generic_proxy/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/network/http_connection_manager/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/network/local_ratelimit/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/network/mongo_proxy/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/network/ratelimit/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/network/rbac/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/network/redis_proxy/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/network/set_filter_state/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/network/sni_cluster/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/network/sni_dynamic_forward_proxy/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/network/tcp_proxy/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/network/thrift_proxy/filters/header_to_metadata/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/network/thrift_proxy/filters/payload_to_metadata/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/network/thrift_proxy/filters/ratelimit/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/network/thrift_proxy/router/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/network/thrift_proxy/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/network/wasm/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/network/zookeeper_proxy/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/udp/dns_filter/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/udp/udp_proxy/session/dynamic_forward_proxy/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/udp/udp_proxy/session/http_capsule/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/udp/udp_proxy/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/formatter/cel/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/formatter/metadata/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/formatter/req_without_query/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/geoip_providers/common/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/geoip_providers/maxmind/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/health_check/event_sinks/file/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/health_checkers/redis/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/health_checkers/thrift/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/http/cache/file_system_http_cache/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/http/cache/simple_http_cache/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/http/custom_response/local_response_policy/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/http/custom_response/redirect_policy/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/http/early_header_mutation/header_mutation/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/http/header_formatters/preserve_case/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/http/header_validators/envoy_default/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/http/injected_credentials/generic/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/http/injected_credentials/oauth2/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/http/original_ip_detection/custom_header/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/http/original_ip_detection/xff/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/http/stateful_session/cookie/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/http/stateful_session/header/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/internal_redirect/allow_listed_routes/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/internal_redirect/previous_routes/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/internal_redirect/safe_cross_scheme/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/key_value/file_based/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/load_balancing_policies/cluster_provided/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/load_balancing_policies/common/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/load_balancing_policies/least_request/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/load_balancing_policies/maglev/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/load_balancing_policies/pick_first/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/load_balancing_policies/random/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/load_balancing_policies/ring_hash/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/load_balancing_policies/round_robin/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/load_balancing_policies/subset/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/load_balancing_policies/wrr_locality/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/matching/common_inputs/environment_variable/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/matching/common_inputs/network/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/matching/common_inputs/ssl/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/matching/input_matchers/consistent_hashing/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/matching/input_matchers/ip/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/matching/input_matchers/metadata/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/matching/input_matchers/runtime_fraction/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/network/dns_resolver/apple/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/network/dns_resolver/cares/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/network/dns_resolver/getaddrinfo/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/network/socket_interface/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/outlier_detection_monitors/common/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/outlier_detection_monitors/consecutive_errors/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/path/match/uri_template/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/path/rewrite/uri_template/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/quic/connection_debug_visitor/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/quic/connection_id_generator/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/quic/crypto_stream/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/quic/proof_source/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/quic/server_preferred_address/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/rate_limit_descriptors/expr/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/rbac/audit_loggers/stream/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/rbac/matchers/upstream_ip_port/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/regex_engines/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/request_id/uuid/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/resource_monitors/cpu_utilization/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/resource_monitors/downstream_connections/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/resource_monitors/fixed_heap/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/resource_monitors/injected_resource/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/retry/host/omit_canary_hosts/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/retry/host/omit_host_metadata/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/retry/host/previous_hosts/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/retry/priority/previous_priorities/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/router/cluster_specifiers/lua/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/stat_sinks/graphite_statsd/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/stat_sinks/open_telemetry/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/stat_sinks/wasm/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/string_matcher/lua/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/tracers/opentelemetry/resource_detectors/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/tracers/opentelemetry/samplers/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/transport_sockets/alts/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/transport_sockets/http_11_proxy/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/transport_sockets/internal_upstream/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/transport_sockets/proxy_protocol/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/transport_sockets/quic/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/transport_sockets/raw_buffer/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/transport_sockets/s2a/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/transport_sockets/starttls/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/transport_sockets/tap/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/transport_sockets/tcp_stats/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/transport_sockets/tls/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/udp_packet_writer/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/upstreams/http/generic/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/upstreams/http/http/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/upstreams/http/tcp/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/upstreams/http/udp/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/upstreams/http/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/upstreams/tcp/generic/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/upstreams/tcp/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/wasm/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/extensions/watchdog/profile_action/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/service/accesslog/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/service/auth/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/service/cluster/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/service/discovery/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/service/endpoint/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/service/event_reporting/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/service/ext_proc/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/service/extension/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/service/health/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/service/listener/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/service/load_stats/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/service/metrics/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/service/rate_limit_quota/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/service/ratelimit/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/service/redis_auth/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/service/route/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/service/runtime/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/service/secret/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/service/status/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/service/tap/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/service/trace/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/type/http/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/type/matcher/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/type/metadata/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/type/tracing/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/type/v3" - _ "github.com/envoyproxy/go-control-plane/envoy/watchdog/v3" - _ "github.com/envoyproxy/go-control-plane/pkg/cache/v3" - _ "github.com/envoyproxy/go-control-plane/pkg/client/sotw/v3" - _ "github.com/envoyproxy/go-control-plane/pkg/resource/v3" - _ "github.com/envoyproxy/go-control-plane/pkg/server/delta/v3" - _ "github.com/envoyproxy/go-control-plane/pkg/server/rest/v3" - _ "github.com/envoyproxy/go-control-plane/pkg/server/sotw/v3" - _ "github.com/envoyproxy/go-control-plane/pkg/server/stream/v3" - _ "github.com/envoyproxy/go-control-plane/pkg/server/v3" - _ "github.com/envoyproxy/go-control-plane/pkg/test/resource/v3" - _ "github.com/envoyproxy/go-control-plane/pkg/test/v3" - _ "github.com/envoyproxy/go-control-plane/ratelimit/config/ratelimit/v3" - _ "github.com/envoyproxy/go-control-plane/ratelimit/service/ratelimit/v3" + // The above TODO is a result of proto types being registered for free somewhere through + // the translator import. What we really need is to register all proto types, which is + // "correctly" available to use via `envoyinit`; note that the autogeneration of these types + // is currently broken. see: https://github.com/kgateway-dev/kgateway/issues/10491 + _ "github.com/solo-io/gloo/projects/envoyinit/hack/filter_types" ) // testBootstrap implements resources.Resource in order to use protoutils.UnmarshalYAML