From 3a939beb67cfdf806be03d05eb733c922f659414 Mon Sep 17 00:00:00 2001 From: Andra Constantin Date: Mon, 26 Aug 2024 13:32:16 -0400 Subject: [PATCH] config values for off-shelf chart --- otel/values.yaml | 70 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 70 insertions(+) create mode 100644 otel/values.yaml diff --git a/otel/values.yaml b/otel/values.yaml new file mode 100644 index 0000000000..7c3387daff --- /dev/null +++ b/otel/values.yaml @@ -0,0 +1,70 @@ +# fullnameOverride: "otel-collector" + +mode: "deployment" + +namespaceOverride: "thecombine" + +image: + repository: "otel/opentelemetry-collector-k8s" + +config: + receivers: + jaeger: null + prometheus: null + zipkin: null + otlp: + protocols: + grpc: + endpoint: 0.0.0.0:4317 + http: + endpoint: 0.0.0.0:4318 + # cors: + # allowed_origins: + # - "http://thecombine.localhost/*" + processors: + batch: {} + exporters: + otlp: + # endpoint: "api.honeycomb.io:443" + endpoint: "https://api.honeycomb.io" + headers: + "x-honeycomb-team": "" + service: + telemetry: + logs: + level: "debug" + pipelines: + traces: + receivers: + - otlp + processors: + - batch + exporters: + - otlp + metrics: null + logs: null + +ports: + otlp: + enabled: false + # enabled: true + # containerPort: 4317 + # servicePort: 4317 + # hostPort: 4317 + # protocol: TCP + otlp-http: + enabled: true + containerPort: 4318 + servicePort: 4318 + hostPort: 4318 + protocol: TCP + jaeger-compact: + enabled: false + jaeger-thrift: + enabled: false + jaeger-grpc: + enabled: false + zipkin: + enabled: false + metrics: + enabled: false