mirror of
https://github.com/dredx/prole.git
synced 2026-09-27 18:34:30 +00:00
- Makefile: Added 'init' and 'deploy' targets for k3s parity and Gitea staging. - OpenTofu: Fixed namespace handling in k3s main.tf to prevent metadata overwrites. - UI: Added 'GitOps' and 'Database Options' configuration screens. - Core: Enhanced monitoring, milestones, and environment handling for new services. - Supabase: Integrated full Helm chart and manifest rendering logic. - Gitea: Added deployment scripts and GitOps sync support. - Database: Added Percona/Postgres Dockerfile templates and improved TDE scripts. - Tests: Added coverage for new UI screens and navigation flows.
14 lines
764 B
YAML
14 lines
764 B
YAML
{{ include "supabase.pvc" (dict "root" $ "name" "db" "enabled" .Values.deployment.db.enabled) }}
|
|
---
|
|
{{ include "supabase.pvc" (dict "root" $ "name" "functions" "enabled" .Values.deployment.functions.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) }}
|