mirror of
https://github.com/dredx/prole.git
synced 2026-09-27 17:24:30 +00:00
Prefer infra-managed manifests for bootstrap; reconcile CNPG instances based on Ready+schedulable labeled db nodes; update manifests to use node-role affinity + anti-affinity; add policy/tests and config touch-ups (incl. prole.cfg).
14 lines
803 B
YAML
14 lines
803 B
YAML
{{ include "supabase.pvc" (dict "root" $ "name" "db" "enabled" .Values.deployment.db.enabled) }}
|
|
---
|
|
{{ include "supabase.pvc" (dict "root" $ "name" "functions" "enabled" (or .Values.deployment.functions.enabled .Values.deployment.studio.enabled)) }}
|
|
---
|
|
{{ include "supabase.pvc" (dict "root" $ "name" "imgproxy" "enabled" .Values.deployment.imgproxy.enabled) }}
|
|
---
|
|
{{ include "supabase.pvc" (dict "root" $ "name" "minio" "enabled" .Values.deployment.minio.enabled) }}
|
|
---
|
|
{{ include "supabase.pvc" (dict "root" $ "name" "snippets" "enabled" .Values.deployment.studio.enabled) }}
|
|
---
|
|
{{ include "supabase.pvc" (dict "root" $ "name" "storage" "enabled" .Values.deployment.storage.enabled) }}
|
|
---
|
|
{{ include "supabase.pvc" (dict "root" $ "name" "deno" "enabled" .Values.deployment.functions.enabled) }}
|