CI / CI (pull_request) In progress
- .env.example: template with all service URIs for local development - LOCAL_DEV.md: guide for running poimen locally - Production: config.yaml (SOPS-encrypted K8s ConfigMap) - Local: .env file (gitignored, never committed) - Application reads from ENV in both cases (K8s ConfigMap + local dotenv) - Simplifies prod/dev: same code, different config sources
12 lines
230 B
YAML
12 lines
230 B
YAML
apiVersion: kustomize.config.k8s.io/v1beta1
|
|
kind: Kustomization
|
|
namespace: poimen
|
|
|
|
resources:
|
|
- deployment.yaml
|
|
- service.yaml
|
|
- config.yaml # Production config (SOPS-encrypted)
|
|
|
|
generators:
|
|
- secret-generator.yaml
|