- Remove base/mesh from local overlay (Linkerd installed via CLI in local-up.sh) - Fix LiveKit namespace: chart doesn't set .Release.Namespace, add explicit patches - Fix release names: livekit-server and cloudnative-pg match chart names (avoid double-prefix) - Disable hydra-maester (not needed for local dev) - Add memory limits for cloudnative-pg operator and livekit-server deployments - Remove non-functional values-ory.yaml patch (DOMAIN_SUFFIX handled by sed in local-up.sh) - Gitignore **/charts/ (kustomize helm cache, generated artifact)
22 lines
573 B
YAML
22 lines
573 B
YAML
apiVersion: kustomize.config.k8s.io/v1beta1
|
|
kind: Kustomization
|
|
|
|
namespace: data
|
|
|
|
resources:
|
|
- namespace.yaml
|
|
- postgres-cluster.yaml
|
|
- valkey-deployment.yaml
|
|
- valkey-service.yaml
|
|
- opensearch-deployment.yaml
|
|
- opensearch-service.yaml
|
|
|
|
helmCharts:
|
|
# helm repo add cnpg https://cloudnative-pg.github.io/charts
|
|
# releaseName=cloudnative-pg matches chart name → operator Deployment is named `cloudnative-pg`
|
|
- name: cloudnative-pg
|
|
repo: https://cloudnative-pg.github.io/charts
|
|
version: "0.27.1"
|
|
releaseName: cloudnative-pg
|
|
namespace: data
|