| 12345678910111213141516 |
- apiVersion: v1
- kind: ConfigMap
- metadata:
- name: pipeline-env
- namespace: pipeline
- data:
- # Non-sensitive runtime config. Secrets (API keys, OSS keys, Feishu webhook)
- # live in the `pipeline-env-secret` Secret, generated from your local .env —
- # see README.md. Anything here can also be overridden by that Secret.
- OUTPUT_DIR: /app/output
- PIPELINE_JOBS_DIR: /app/jobs
- OUTPUT_RETENTION_DAYS: "30"
- TIMEZONE: Asia/Shanghai
- TZ: Asia/Shanghai
- LOG_LEVEL: info
- NODE_ENV: production
|