mirror of
https://github.com/dredx/prole.git
synced 2026-09-24 20:04:31 +00:00
- Introduced dependency validation for ManagedCertificate and FrontendConfig annotations in Supabase ingresses. - Enhanced `deploy.sh` with public ingress TLS resource application and improved error diagnostics. - Updated `render_supabase.py` to generate GKE TLS manifests and log rendered resources. - Refined Supabase deployment flow to include detailed ingress dependency validation and reconciliation.
51 lines
1.7 KiB
YAML
51 lines
1.7 KiB
YAML
{{- if .Values.studioIngress.enabled -}}
|
|
{{- $svcName := include "supabase.studio.fullname" . -}}
|
|
{{- $svcPort := 3000 -}}
|
|
{{- if and .Values.studioIngress.className (not (semverCompare ">=1.18-0" .Capabilities.KubeVersion.GitVersion)) }}
|
|
{{- if not (hasKey .Values.ingress.annotations "kubernetes.io/ingress.class") }}
|
|
{{- $_ := set .Values.ingress.annotations "kubernetes.io/ingress.class" .Values.studioIngress.className}}
|
|
{{- end }}
|
|
{{- end }}
|
|
apiVersion: networking.k8s.io/v1
|
|
kind: Ingress
|
|
metadata:
|
|
name: {{ $svcName }}
|
|
labels:
|
|
{{- include "supabase.labels" . | nindent 4 }}
|
|
{{- with (default .Values.ingress.annotations .Values.studioIngress.annotations) }}
|
|
annotations:
|
|
{{- toYaml . | nindent 4 }}
|
|
{{- end }}
|
|
spec:
|
|
{{- if and .Values.studioIngress.className (semverCompare ">=1.18-0" .Capabilities.KubeVersion.GitVersion) }}
|
|
ingressClassName: {{ .Values.studioIngress.className }}
|
|
{{- end }}
|
|
{{- if .Values.studioIngress.tls }}
|
|
tls:
|
|
{{- range .Values.studioIngress.tls }}
|
|
- hosts:
|
|
{{- range .hosts }}
|
|
- {{ . | quote }}
|
|
{{- end }}
|
|
secretName: {{ .secretName }}
|
|
{{- end }}
|
|
{{- end }}
|
|
rules:
|
|
{{- range .Values.studioIngress.hosts }}
|
|
- host: {{ .host | quote }}
|
|
http:
|
|
paths:
|
|
{{- range .paths }}
|
|
- path: {{ .path }}
|
|
{{- if and .pathType (semverCompare ">=1.18-0" $.Capabilities.KubeVersion.GitVersion) }}
|
|
pathType: {{ .pathType }}
|
|
{{- end }}
|
|
backend:
|
|
service:
|
|
name: {{ $svcName }}
|
|
port:
|
|
number: {{ $svcPort }}
|
|
{{- end }}
|
|
{{- end }}
|
|
{{- end }}
|