Questions tagged [envoyproxy]

Use this tag for questions about the Envoy xDS APIs or Envoy internals.

Envoy is an L7 proxy and communication bus designed for large modern service oriented architectures. The project was born out of the belief that:

The network should be transparent to applications. When network and application problems do occur it should be easy to determine the source of the problem.

Envoy is hosted by the Cloud Native Computing Foundation (CNCF). If you are a company that wants to help shape the evolution of technologies that are container-packaged, dynamically-scheduled and microservices-oriented, consider joining the CNCF. For details about who's involved and how Envoy plays a role, read the CNCF announcement.

For official documentation, head to https://www.envoyproxy.io/

To get in touch with the envoy community, please see the contacts list.

823 questions
0
votes
1 answer

How to deploy Envoy EDS/SDS

This is a micro services deployment question. How would you deploy Envoy SDS(service discovery service) so other envoy proxies can find the SDS server hosts, in order to discover other services to build the service mesh. Should I put it behind a…
Sasinda Rukshan
  • 439
  • 1
  • 5
  • 14
0
votes
3 answers

service in a pod(envoy proxy enabled) cannot connect to redis pod

Step 1. I deployed redis without envoy sidecar. https://github.com/kubernetes/charts/tree/master/stable/redis When running a regis-cli in another pod which does not have envoy, redis connection working ok. => Proved redis itself functions. Step 2.…
learner
  • 51
  • 1
  • 4
0
votes
1 answer

Istio Task - Testing Istio mutual TLS authentication - Can not perform on Bluemix for example BookInfo

Env: Bluemix + K8 + Istio + Bookinfo Refer to https://istio.io/docs/tasks/security/mutual-tls.html When doing - Testing the authentication setup , Step 4, it failed because the container has smallest linux installed which does not support curl…
Fei Wang
  • 3
  • 1
0
votes
1 answer

Envoy - Permission denied

I'm trying to deploy my project using Envoy. I linked my vagrant to a deploybot user on the server, which works perfectly, but when I try to deploy my project I get these errors [deploybot@"Server IP"]: PHP Warning: …
Joren Polfliet
  • 101
  • 1
  • 8
-1
votes
1 answer

how to use envoyloadbalancer to route Multiple domains on same public IP

here is my architecture architecture i want to bind multiple domains to same IP address by exemple when i enter foo.com in my browser i see webapp1 and when i type bar.com in my broswer i find webapp2 . for that i have two webapp : webapp1 on ip…
-1
votes
1 answer

Import Proto files to Bazel build from Envoy

I am writing a C++ program and it requires the Ext_auth.proto from Envoy - https://github.com/envoyproxy/envoy/blob/main/api/envoy/config/filter/http/ext_authz/v2/ext_authz.proto How can I import the proto file to Bazel build? And how to generate…
Pubci
  • 3,834
  • 1
  • 13
  • 28
-1
votes
1 answer

Unable to start envoy in docker-compose

I have this envoy.yaml admin: access_log_path: /tmp/admin_access.log address: socket_address: { address: 0.0.0.0, port_value: 9901 } static_resources: listeners: - name: listener_0 address: socket_address: { address:…
Alex Ironside
  • 4,658
  • 11
  • 59
  • 119
-1
votes
1 answer

Using envoy as a reverse proxy for a remote site after auto login

I am trying to establish the following flow Envoy receives request from client to access remote site S1 Envoy routes the requests to Cluster C1 - which fetches the required credential, performs login C1 extracts the required cookies and session…
aquitted-mind
  • 263
  • 1
  • 13
-1
votes
2 answers

EnvoyFilter jwt_authn

i'm trying to use the EnvoyFilter to pass the jwt payload from the request, decode it and use the claims as headers to the request. it does not work, and i fail to get the dynamicMetadata filled with the payload after using the jwt_authn. here is an…
user14242404
  • 443
  • 1
  • 5
  • 16
-1
votes
1 answer

how to change envoy configuration dynamically

I have a kubernetes cluster with 3 node and 3 envoy, I want to change envoy configuration, without losing connection, what is the best solution ???
-1
votes
1 answer

Where envoy Istio fits in to microservice application

I am trying to understand full picture of microservice architecture. I work on java so worked with spring boot applications. As per my understanding spring has good integration with Netflix modules like service discovery , zuul api Gateway, hystrix…
Renukeswar
  • 21
  • 1
-1
votes
1 answer

Why is Envoy ext-authz not honoring connect_timeout?

I am using the ext-authz filter using a cluster setting like below: static_resources: clusters: - name: ext-authz type: static http2_protocol_options: {} hosts: # Host docker0 IP address. - socket_address: {…
Per Lundberg
  • 3,837
  • 1
  • 36
  • 46
-3
votes
1 answer

Can envoy route based on ip range?

I want envoy to dns lookup hostname and route request based on resolved ip range. For example, a hostname x.internal.com resolves to 10.0.0.1, which is internal because it's in range 10.0.0.0 – 10.255.255.255. So x.internal.com will be routed to…
1 2 3
54
55