question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Envoy filter not working anymore with envoy >=v1.22

See original GitHub issue

With the existing configuration sample from this project and envoy version v1.22, I get the following error message when starting up the proxy:

Didn't find a registered implementation for 'envoy.filters.http.grpc_web' with type URL: ''

With v1.21 everything works just fine. Is there any way to resolve this problem?

Issue Analytics

  • State:closed
  • Created a year ago
  • Reactions:4
  • Comments:9 (2 by maintainers)

github_iconTop GitHub Comments

18reactions
tomk9commented, Apr 21, 2022

Based on https://github.com/envoyproxy/envoy/blob/2586aa6271811ba5653e7da82dfb62c85e740152/examples/front-proxy/service-envoy.yaml#L26:L28 @Gerrit91 @shivavishaal66215 try to add types:

3reactions
shivavishaal66215commented, Apr 23, 2022

Thanks a lot folks. Amazing response time. 😄

Read more comments on GitHub >

github_iconTop Results From Across the Web

1.22.0 (April 15, 2022) - Envoy Proxy
tls: set TLS v1.2 as the default minimal version for servers. ... This may cause problems for empty filter configurations or mis-matched ...
Read more >
Envoy Filter - Istio
Istio Pilot generates envoy configuration in the context of a gateway, inbound traffic to sidecar and outbound traffic from sidecar. No. proxy, ProxyMatch....
Read more >
Ambassador Edge Stack Release Notes
0 of Ambassador Edge Stack when it was upgraded to Envoy 1.22. The http to https redirection no longer works when an AuthService...
Read more >
Didn't find a registered implementation for 'envoy.filters.http ...
This may cause problems for empty filter configurations or mis-matched protobuf as the typed configurations. This behavioral change can be temporarily reverted ...
Read more >
Anyone else having issue with some of their IQ7+ micro ...
I see the problem on one or more of the same 5 or 6 inverters but ... from http://[envoy IP]/api/v1/production/inverters that one of...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found
v1.21 v1.22
http_filters:
  - name: envoy.filters.http.grpc_web
  - name: envoy.filters.http.cors
  - name: envoy.filters.http.router
http_filters:
  - name: envoy.filters.http.grpc_web
    typed_config:
      "@type": type.googleapis.com/envoy.extensions.filters.http.grpc_web.v3.GrpcWeb
  - name: envoy.filters.http.cors
    typed_config:
      "@type": type.googleapis.com/envoy.extensions.filters.http.cors.v3.Cors
  - name: envoy.filters.http.router
    typed_config:
      "@type": type.googleapis.com/envoy.extensions.filters.http.router.v3.Router