registry traces export: Post "https://localhost:4318/v1/traces": dial tcp [::1]:4318: connect: connection refused
2025. 3. 29. 12:24ㆍk8s
어딘가로 trace 정보를 보내려는 것 같음
제거
# Dockerfile
ENV OTEL_TRACES_EXPORTER=none
# bash
export OTEL_TRACES_EXPORTER=none
# yml
spec:
containers:
- name: registry
image: your-image-name
ports:
- containerPort: {port}
env:
- name: OTEL_TRACES_EXPORTER
value: "none"
'k8s' 카테고리의 다른 글
registry에서 이미지를 못 가져오는 경우 (0) | 2025.03.29 |
---|---|
pod 이름 변수값으로 설정하기 (0) | 2025.03.29 |
ERROR: failed to solve: failed to compute cache key: failed to calculate checksum of ref f753c1c0-f1ae-4e19-89b5-ecfb01151aca::n2namopijuykv7dpylxif1h4j: "/src": not foundexit status 1 (0) | 2025.03.28 |
LoadBalancer IP 지정 (0) | 2025.03.14 |
imagePullPolicy: Always or IfNotPresent (0) | 2025.03.09 |