supabase-operator/internal/supabase/images.go
Peter Kurfer 12090c913a
Some checks failed
E2E Tests / Run on Ubuntu (push) Failing after 20s
Lint / Run on Ubuntu (push) Failing after 3m45s
Tests / Run on Ubuntu (push) Failing after 16m8s
feat(db): prepare migrations and core CRD
2024-12-13 09:09:14 +01:00

63 lines
1.2 KiB
Go

package supabase
type ImageRef struct {
// The repository of the image
Repository string
// The tag of the image
Tag string
}
var Images = map[string]ImageRef{
"analytics": {
Repository: "supabase/logflare",
Tag: "1.4.0",
},
"auth": {
Repository: "supabase/gotrue",
Tag: "v2.164.0",
},
"db": {
Repository: "supabase/postgres",
Tag: "15.6.1.146",
},
"functions": {
Repository: "supabase/edge-runtime",
Tag: "v1.65.3",
},
"imgproxy": {
Repository: "darthsim/imgproxy",
Tag: "v3.8.0",
},
"kong": {
Repository: "kong",
Tag: "2.8.1",
},
"meta": {
Repository: "supabase/postgres-meta",
Tag: "v0.84.2",
},
"realtime": {
Repository: "supabase/realtime",
Tag: "v2.33.58",
},
"rest": {
Repository: "postgrest/postgrest",
Tag: "v12.2.0",
},
"storage": {
Repository: "supabase/storage-api",
Tag: "v1.11.13",
},
"studio": {
Repository: "supabase/studio",
Tag: "20241202-71e5240",
},
"supavisor": {
Repository: "supabase/supavisor",
Tag: "1.1.56",
},
"vector": {
Repository: "timberio/vector",
Tag: "0.28.1-alpine",
},
}