supabase-operator/magefiles/templates/images.go.tmpl
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

17 lines
331 B
Cheetah

package supabase
type ImageRef struct {
// The repository of the image
Repository string
// The tag of the image
Tag string
}
var Images = map[string]ImageRef{
{{- range $name, $image := .Images }}
"{{$name}}": {
Repository: "{{$image.Repository}}",
Tag: "{{$image.Tag}}",
},
{{- end }}
}