18 lines
331 B
Cheetah
18 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 }}
|
||
|
}
|