Skip to content

Commit c4b8116

Browse files
committed
Update image tags
* update analytics command and environment variables * fix persistent volume claim request schema
1 parent 43060ba commit c4b8116

File tree

5 files changed

+6
-16
lines changed

5 files changed

+6
-16
lines changed

charts/supabase/templates/analytics/deployment.yaml

+1-9
Original file line numberDiff line numberDiff line change
@@ -55,15 +55,7 @@ spec:
5555
done
5656
- echo "Database is ready"
5757
containers:
58-
- command:
59-
- /bin/sh
60-
- -c
61-
- |
62-
cat << EOF > run.sh && sh run.sh
63-
./logflare eval Logflare.Release.migrate
64-
./logflare start --sname logflare
65-
EOF
66-
name: {{ include "supabase.analytics.name" $ }}
58+
- name: {{ include "supabase.analytics.name" $ }}
6759
securityContext:
6860
{{- toYaml .Values.analytics.securityContext | nindent 12 }}
6961
image: "{{ .Values.analytics.image.repository }}:{{ .Values.analytics.image.tag | default .Chart.AppVersion }}"

charts/supabase/templates/db/volume.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,6 @@ spec:
2020
{{- end }}
2121
resources:
2222
requests:
23-
db: {{ .Values.db.persistence.size | quote }}
23+
storage: {{ .Values.db.persistence.size | quote }}
2424
{{- end }}
2525
{{- end }}

charts/supabase/templates/imgproxy/volume.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,6 @@ spec:
2020
{{- end }}
2121
resources:
2222
requests:
23-
imgproxy: {{ .Values.imgproxy.persistence.size | quote }}
23+
storage: {{ .Values.imgproxy.persistence.size | quote }}
2424
{{- end }}
2525
{{- end }}

charts/supabase/values.example.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ studio:
4848

4949
auth:
5050
image:
51-
repo: v2.99.0
51+
repo: v2.125.1
5252
environment:
5353
GOTRUE_SITE_URL: http://example.com
5454
GOTRUE_EXTERNAL_EMAIL_ENABLED: "true"
@@ -73,7 +73,7 @@ realtime:
7373

7474
meta:
7575
image:
76-
tag: v0.68.0
76+
tag: v0.75.0
7777

7878
storage:
7979
image:
@@ -145,4 +145,4 @@ vector:
145145

146146
functions:
147147
image:
148-
tag: v1.22.4
148+
tag: v1.29.1

charts/supabase/values.yaml

-2
Original file line numberDiff line numberDiff line change
@@ -840,9 +840,7 @@ analytics:
840840
DB_SCHEMA: _analytics
841841
LOGFLARE_SINGLE_TENANT: "true"
842842
LOGFLARE_SUPABASE_MODE: "true"
843-
LOGFLARE_MIN_CLUSTER_SIZE: "1"
844843
FEATURE_FLAG_OVERRIDE: multibackend=true
845-
RELEASE_COOKIE: cookie
846844
# Enable Big Query backend for analytics
847845
bigQuery:
848846
enabled: false

0 commit comments

Comments
 (0)