mirror of
https://github.com/dredx/prole.git
synced 2026-09-24 16:34:31 +00:00
- align app/db cluster defaults for knoe-dev-0 + knoe-dev-cnpg-0 on e2-standard-2\n- harden Supabase deploy flow for cross-cluster DB ILB, GKE storage class, and node selector fallback\n- migrate Helm chart path to knoe-supabase and make external DB host rendering IP-safe\n- disable Kerberos in prod unattended config to prevent Supabase GSS auth failures\n- add Supabase port-forward mappings and DB backup context handling improvements\n\nBuild status: k8s stable Co-authored-by: Junie <junie@jetbrains.com>
26 lines
724 B
YAML
26 lines
724 B
YAML
{{- if .Values.deployment.minio.enabled -}}
|
|
apiVersion: batch/v1
|
|
kind: Job
|
|
metadata:
|
|
name: {{ include "supabase.fullname" . }}-test-minio
|
|
labels:
|
|
{{- include "supabase.labels" . | nindent 4 }}
|
|
annotations:
|
|
"helm.sh/hook": test
|
|
spec:
|
|
ttlSecondsAfterFinished: 100
|
|
template:
|
|
spec:
|
|
containers:
|
|
- name: test-minio
|
|
image: kdevup/curljq
|
|
command:
|
|
- /bin/bash
|
|
- -c
|
|
- |
|
|
curl -sfo /dev/null \
|
|
http://{{ include "supabase.minio.fullname" . }}:{{ .Values.service.minio.port }}/minio/health/live
|
|
echo "Sevice {{ include "supabase.minio.fullname" . }} is healthy."
|
|
restartPolicy: Never
|
|
{{- end }}
|