This message was deleted.
# support
s
This message was deleted.
p
Can you try moving the environments outside of the Dockerfile? Set these in the go application pod environment instead:
Copy code
SERVICE_NAME=goApp
INSECURE_MODE=true
OTEL_EXPORTER_OTLP_ENDPOINT=signoz-otel-collector.apm-signoz.svc.cluster.local:4317
Also, use the following instead in
CMD
section:
Copy code
CMD ["go", "run", "main.go"]
^ Although, I would recommend compiling the go code into a binary and using it instead of this.