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
0 answers

Istio not reporting https traces to Jaeger

Describe the bug We have a container running with envoy sidecar proxy with service/deployment for port 443 using Istio's own example: sample/https/nginx. We can curl the container to get nginx page just fine but see absolutely no traces in Jaeger…
Scooby
  • 3,371
  • 8
  • 44
  • 84
0
votes
1 answer

How to configure envoy edge proxy for redis service in kubernetes?

I want to expose Redis HA service running in kubernetes to clients running outside the cloud. For this, I'm trying to setup envoy which supports Redis. I'm using ambassador which is a wrapper around envoy for kubernetes. Followed this doc for the…
rainhacker
  • 592
  • 2
  • 13
0
votes
1 answer

Istio injection with an app with secret and configmap

I am trying to test SSL pass-thru with Istio/envoy ingress as I was able to achieve it with nginx ingress controller. So I created a nginx https deployment and tested the deployment/pod/service works. However, when I run this as usual, kubectl apply…
J H
  • 185
  • 1
  • 11
0
votes
2 answers

How to add envoy proxy to a deployment

I want to add envoy proxy to an existing Kubernetes deployment as a sidecar. I tried following multiple blog posts and that did not seem to help. I was wondering if anyone has done it, and if so, how to? Thank you!
0
votes
1 answer

Can I use envoyproxy as partition aware load balancer

I do have multitenant service. Each tenant can be served by one of the specific machines in the cluster. There is a also a service which knows where the specific tenant is loaded now. Can I configure envoyproxy as a gateway, in a way it will route…
pastorgluk
  • 191
  • 1
  • 1
  • 7
0
votes
1 answer

How do I integrate Envoy proxy with Service Fabric?

How do I integrate Envoy proxy with Service Fabric? Is there a similar solution which is provided by Traefik https://github.com/jjcollinge/traefik-on-service-fabric? If not, what other alternative do I have? This is required for a Windows cluster in…
kumar
  • 8,207
  • 20
  • 85
  • 176
0
votes
1 answer

debug envoy on MacOS with lldb/gdb

I want to debug envoy on MacOS, so I take following actions: I build envoy binary with command bazel build -c dbg --apple_generate_dsym //source/exe:envoy-static lldb -p {pidOfEnvoy}, set breakpoint breakpoint set --name onConnectionEvent but the…
甲 由
  • 21
  • 1
0
votes
1 answer

envoy issue with skipping target

envoy: v1.7.0 The following rule load("@envoy//bazel:repositories.bzl", "envoy_dependencies") envoy_dependencies(repository="@envoy", skip_targets=["io_bazel_rules_go"]) local_repository( name = "io_bazel_rules_go", path =…
R_SS
  • 317
  • 5
  • 21
0
votes
1 answer

ambassador configuration for jupyterlab

I'm trying to replace nginx as proxy with ambassador which is the implementation of the envoyproxy on kubernetes. I did exactly as shown in here But nothing seems to really works, is there a way someone can help with the appropriated configuration…
Gilles Essoki
  • 517
  • 6
  • 15
0
votes
1 answer

Get a connection from the pool - Envoy

I need to get a connection from pool to connect to the upstream but facing 503 issues occassionally. I would like to know the root cause for…
0
votes
1 answer

How to handle ephemeral port exhaustion in envoy

One of the problems with reverse proxies handling multiple requests on behalf of clients is, after a while under heavy load, the number of outgoing connections from envoy node to backend nodes will run out of ephemeral ports Assuming that we have…
Ashok Koyi
  • 5,327
  • 8
  • 41
  • 50
0
votes
1 answer

Istio route rules

I'm trying to set some route rules and I have a problem in the following case. If I send a HTTP request to the port, let's say, 5000 of the service "service-a" I want my route rule to forward the request to the port 5001 of the service "service-b".…
biomartin
  • 87
  • 11
0
votes
0 answers

compiling GoStdlib fails on linux + ppc64le

I realize this is unsupported, but I'm trying to understand if there's some way around it. bazel build //src/envoy ERROR: /home/christy/.cache/bazel/_bazel_christy/bf2fef385bbf6e59110f7665da7ca8d6/external/io_bazel_rules_go/BUILD.bazel:9:1: GoStdlib…
Christy
  • 239
  • 2
  • 7
0
votes
1 answer

Envoy with gRPC routing

I cant seem to make Envoy working with multiple gRPC services deployed. gRPC call always goes to the same instance. How does Envoy load balancer discovers there are other instances of same service were launched with docker-compose scale? Service1…
ArkadyB
  • 1,265
  • 1
  • 19
  • 37
0
votes
2 answers

How to configure dynamic routing of gRPC requests with envoy, nomad and consul

We use nomad to deploy our applications - which provide gRPC endpoints - as tasks. The tasks are then registered to Consul, using nomad's service stanza. The routing for our applications is achieved with envoy proxy. We are running central envoy…
Dominik Sandjaja
  • 6,326
  • 6
  • 52
  • 77
1 2 3
54
55