supabase-operator/internal/supabase/images.go
Peter Kurfer 647f602c79
Some checks failed
Lint / Run on Ubuntu (push) Failing after 2m58s
E2E Tests / Run on Ubuntu (push) Failing after 4m18s
Tests / Run on Ubuntu (push) Failing after 2m39s
feat: basic functionality implemented
- added Core CRD to manage DB migrations & configuration, PostgREST and
  GoTrue (auth)
- added APIGateway CRD to manage Envoy proxy
- added Dashboard CRD to manage (so far) pg-meta and (soon) studio
  deployments
- implemented basic Envoy control plane based on K8s watcher
2025-01-04 17:07:49 +01:00

63 lines
1.2 KiB
Go

package supabase
import "fmt"
type ImageRef struct {
// The repository of the image
Repository string
// The tag of the image
Tag string
}
func (r ImageRef) String() string {
return fmt.Sprintf("%s:%s", r.Repository, r.Tag)
}
var Images = struct {
EdgeRuntime ImageRef
Envoy ImageRef
Gotrue ImageRef
ImgProxy ImageRef
PostgresMeta ImageRef
Postgrest ImageRef
Realtime ImageRef
Storage ImageRef
Studio ImageRef
}{
EdgeRuntime: ImageRef{
Repository: "supabase/edge-runtime",
Tag: "v1.65.3",
},
Envoy: ImageRef{
Repository: "envoyproxy/envoy",
Tag: "distroless-v1.32.3",
},
Gotrue: ImageRef{
Repository: "supabase/gotrue",
Tag: "v2.164.0",
},
ImgProxy: ImageRef{
Repository: "darthsim/imgproxy",
Tag: "v3.8.0",
},
PostgresMeta: ImageRef{
Repository: "supabase/postgres-meta",
Tag: "v0.84.2",
},
Postgrest: ImageRef{
Repository: "postgrest/postgrest",
Tag: "v12.2.0",
},
Realtime: ImageRef{
Repository: "supabase/realtime",
Tag: "v2.33.70",
},
Storage: ImageRef{
Repository: "supabase/storage-api",
Tag: "v1.11.13",
},
Studio: ImageRef{
Repository: "supabase/studio",
Tag: "20241202-71e5240",
},
}