mirror of
https://github.com/dredx/prole.git
synced 2026-09-27 20: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.
18 lines
408 B
YAML
18 lines
408 B
YAML
{{- if not .Values.secret.analytics.secretRef }}
|
|
apiVersion: v1
|
|
kind: Secret
|
|
metadata:
|
|
name: {{ include "supabase.secret.analytics" . }}
|
|
labels:
|
|
{{- include "supabase.labels" . | nindent 4 }}
|
|
type: Opaque
|
|
data:
|
|
{{- range $key, $value := .Values.secret.analytics }}
|
|
{{- if $value }}
|
|
{{- if eq (typeOf $value) "string" }}
|
|
{{ $key }}: {{ $value | b64enc }}
|
|
{{- end }}
|
|
{{- end }}
|
|
{{- end }}
|
|
{{- end }}
|