mirror of
https://github.com/dredx/prole.git
synced 2026-09-27 21:04: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.
63 lines
1.4 KiB
Smarty
63 lines
1.4 KiB
Smarty
{{/*
|
|
Expand the name of the JWT secret.
|
|
*/}}
|
|
{{- define "supabase.secret.jwt" -}}
|
|
{{- printf "%s-jwt" (include "supabase.fullname" .) }}
|
|
{{- end -}}
|
|
|
|
{{/*
|
|
Expand the name of the SMTP secret.
|
|
*/}}
|
|
{{- define "supabase.secret.smtp" -}}
|
|
{{- printf "%s-smtp" (include "supabase.fullname" .) }}
|
|
{{- end -}}
|
|
|
|
{{/*
|
|
Expand the name of the dashboard secret.
|
|
*/}}
|
|
{{- define "supabase.secret.dashboard" -}}
|
|
{{- printf "%s-dashboard" (include "supabase.fullname" .) }}
|
|
{{- end -}}
|
|
|
|
{{/*
|
|
Expand the name of the database secret.
|
|
*/}}
|
|
{{- define "supabase.secret.db" -}}
|
|
{{- printf "%s-db" (include "supabase.fullname" .) }}
|
|
{{- end -}}
|
|
|
|
{{/*
|
|
Expand the name of the analytics secret.
|
|
*/}}
|
|
{{- define "supabase.secret.analytics" -}}
|
|
{{- printf "%s-analytics" (include "supabase.fullname" .) }}
|
|
{{- end -}}
|
|
|
|
{{/*
|
|
Expand the name of the meta secret.
|
|
*/}}
|
|
{{- define "supabase.secret.meta" -}}
|
|
{{- printf "%s-meta" (include "supabase.fullname" .) }}
|
|
{{- end -}}
|
|
|
|
{{/*
|
|
Expand the name of the realtime secret.
|
|
*/}}
|
|
{{- define "supabase.secret.realtime" -}}
|
|
{{- printf "%s-realtime" (include "supabase.fullname" .) }}
|
|
{{- end -}}
|
|
|
|
{{/*
|
|
Expand the name of the s3 secret.
|
|
*/}}
|
|
{{- define "supabase.secret.s3" -}}
|
|
{{- printf "%s-s3" (include "supabase.fullname" .) }}
|
|
{{- end -}}
|
|
|
|
{{/*
|
|
Expand the name of the minio secret.
|
|
*/}}
|
|
{{- define "supabase.secret.minio" -}}
|
|
{{- printf "%s-minio" (include "supabase.fullname" .) }}
|
|
{{- end -}}
|