mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-27 12:54:42 +00:00
Assign tracing-related environment variables in Kubernetes
Co-Authored-By: Antonio Scandurra <me@as-cii.com>
This commit is contained in:
parent
6ef2d0fbec
commit
dc28305c9f
3 changed files with 11 additions and 0 deletions
|
@ -1 +1,2 @@
|
||||||
ZED_ENVIRONMENT=production
|
ZED_ENVIRONMENT=production
|
||||||
|
TRACE_LEVEL=debug
|
||||||
|
|
|
@ -1 +1,2 @@
|
||||||
ZED_ENVIRONMENT=staging
|
ZED_ENVIRONMENT=staging
|
||||||
|
TRACE_LEVEL=debug
|
||||||
|
|
|
@ -85,6 +85,15 @@ spec:
|
||||||
value: "1"
|
value: "1"
|
||||||
- name: RUST_LOG
|
- name: RUST_LOG
|
||||||
value: "trace"
|
value: "trace"
|
||||||
|
- name: TRACE_LEVEL
|
||||||
|
value: ${TRACE_LEVEL}
|
||||||
|
- name: HONEYCOMB_DATASET
|
||||||
|
value: "collab"
|
||||||
|
- name: HONEYCOMB_API_KEY
|
||||||
|
valueFrom:
|
||||||
|
secretKeyRef:
|
||||||
|
name: honeycomb
|
||||||
|
key: apiKey
|
||||||
securityContext:
|
securityContext:
|
||||||
capabilities:
|
capabilities:
|
||||||
# FIXME - Switch to the more restrictive `PERFMON` capability.
|
# FIXME - Switch to the more restrictive `PERFMON` capability.
|
||||||
|
|
Loading…
Reference in a new issue