From 2ef82f20ee553ef8cdadd81192aa52505bb0f8e1 Mon Sep 17 00:00:00 2001 From: Yuri Shkuro Date: Tue, 19 Nov 2024 17:13:38 -0500 Subject: [PATCH 1/2] Remove 0.0.0.0 overrides in HotROD CI Signed-off-by: Yuri Shkuro --- examples/hotrod/docker-compose-v2.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/examples/hotrod/docker-compose-v2.yml b/examples/hotrod/docker-compose-v2.yml index a4a82fac049..3e39faad702 100644 --- a/examples/hotrod/docker-compose-v2.yml +++ b/examples/hotrod/docker-compose-v2.yml @@ -4,9 +4,6 @@ services: jaeger: image: ${REGISTRY:-}jaegertracing/jaeger:${JAEGER_VERSION:-latest} - command: - - --set=receivers.otlp.protocols.grpc.endpoint="0.0.0.0:4317" - - --set=receivers.otlp.protocols.http.endpoint="0.0.0.0:4318" ports: - "16686:16686" - "4317:4317" From e2aa1805006f093e1831e5ba942c17e36e56f3f8 Mon Sep 17 00:00:00 2001 From: Yuri Shkuro Date: Tue, 19 Nov 2024 17:34:01 -0500 Subject: [PATCH 2/2] fix Signed-off-by: Yuri Shkuro --- cmd/jaeger/internal/all-in-one.yaml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/cmd/jaeger/internal/all-in-one.yaml b/cmd/jaeger/internal/all-in-one.yaml index 5417b95d133..9a534d19fff 100644 --- a/cmd/jaeger/internal/all-in-one.yaml +++ b/cmd/jaeger/internal/all-in-one.yaml @@ -35,7 +35,9 @@ extensions: # sampling_store: some_store # initial_sampling_probability: 0.1 http: + endpoint: "0.0.0.0:5778" grpc: + endpoint: "0.0.0.0:5779" healthcheckv2: use_v2: true @@ -50,16 +52,19 @@ receivers: otlp: protocols: grpc: + endpoint: "0.0.0.0:4317" http: + endpoint: "0.0.0.0:4318" jaeger: protocols: grpc: - thrift_binary: - thrift_compact: + endpoint: "0.0.0.0:14250" thrift_http: + endpoint: "0.0.0.0:14268" zipkin: + endpoint: "0.0.0.0:9411" processors: batch: