mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-26 20:22:30 +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
|
||||
TRACE_LEVEL=debug
|
||||
|
|
|
@ -1 +1,2 @@
|
|||
ZED_ENVIRONMENT=staging
|
||||
TRACE_LEVEL=debug
|
||||
|
|
|
@ -85,6 +85,15 @@ spec:
|
|||
value: "1"
|
||||
- name: RUST_LOG
|
||||
value: "trace"
|
||||
- name: TRACE_LEVEL
|
||||
value: ${TRACE_LEVEL}
|
||||
- name: HONEYCOMB_DATASET
|
||||
value: "collab"
|
||||
- name: HONEYCOMB_API_KEY
|
||||
valueFrom:
|
||||
secretKeyRef:
|
||||
name: honeycomb
|
||||
key: apiKey
|
||||
securityContext:
|
||||
capabilities:
|
||||
# FIXME - Switch to the more restrictive `PERFMON` capability.
|
||||
|
|
Loading…
Reference in a new issue