01-configmap.yaml 496 B

12345678910111213141516
  1. apiVersion: v1
  2. kind: ConfigMap
  3. metadata:
  4. name: pipeline-env
  5. namespace: pipeline
  6. data:
  7. # Non-sensitive runtime config. Secrets (API keys, OSS keys, Feishu webhook)
  8. # live in the `pipeline-env-secret` Secret, generated from your local .env —
  9. # see README.md. Anything here can also be overridden by that Secret.
  10. OUTPUT_DIR: /app/output
  11. PIPELINE_JOBS_DIR: /app/jobs
  12. OUTPUT_RETENTION_DAYS: "30"
  13. TIMEZONE: Asia/Shanghai
  14. TZ: Asia/Shanghai
  15. LOG_LEVEL: info
  16. NODE_ENV: production