supabase-operator/magefiles/templates/images.go.tmpl

18 lines
331 B
Cheetah
Raw Normal View History

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 }}
}