Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions api/v1alpha1/supabaseproject_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ type StorageConfig struct {
}

type KongConfig struct {
// +kubebuilder:default="kong/kong:3.9.1"
// +kubebuilder:default="kong/kong:3.9.3"
// +optional
Image string `json:"image,omitempty"`

Expand Down Expand Up @@ -213,7 +213,7 @@ type MetaConfig struct {
}

type StudioConfig struct {
// +kubebuilder:default="supabase/studio:2026.07.07-sha-a6a04f2"
// +kubebuilder:default="supabase/studio:2026.08.03-sha-022b374"
// +optional
Image string `json:"image,omitempty"`

Expand Down
4 changes: 2 additions & 2 deletions api/v1alpha1/wellknown_images.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ package v1alpha1
// which reads the upstream compose file:
// https://github.com/supabase/supabase/blob/master/docker/docker-compose.yml
const (
DefaultKongImage = "kong/kong:3.9.1"
DefaultKongImage = "kong/kong:3.9.3"
DefaultAuthImage = "supabase/gotrue:v2.189.0"
DefaultPostgRESTImage = "postgrest/postgrest:v14.12"
DefaultRealtimeImage = "supabase/realtime:v2.102.3"
DefaultStorageAPIImage = "supabase/storage-api:v1.60.4"
DefaultMetaImage = "supabase/postgres-meta:v0.96.6"
DefaultStudioImage = "supabase/studio:2026.07.07-sha-a6a04f2"
DefaultStudioImage = "supabase/studio:2026.08.03-sha-022b374"
)

// DefaultPostgresImage is used by the database init job only. The operator
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -519,7 +519,7 @@ spec:
type: object
type: array
image:
default: kong/kong:3.9.1
default: kong/kong:3.9.3
type: string
replicas:
default: 1
Expand Down Expand Up @@ -1716,7 +1716,7 @@ spec:
type: object
type: array
image:
default: supabase/studio:2026.07.07-sha-a6a04f2
default: supabase/studio:2026.08.03-sha-022b374
type: string
publicUrl:
type: string
Expand Down
Loading