2021-03-04 20:44:49 -05:00
|
|
|
package registry
|
|
|
|
|
|
|
|
|
|
var (
|
2023-12-19 00:34:33 -05:00
|
|
|
// DefaultProperties is a map of all valid registry properties with corresponding default property values
|
2021-03-04 20:44:49 -05:00
|
|
|
DefaultProperties = map[string]string{
|
2021-08-03 16:23:10 -04:00
|
|
|
"image-repo": "",
|
|
|
|
|
"push-on-release": "false",
|
|
|
|
|
"server": "",
|
2024-02-14 18:29:49 +01:00
|
|
|
"push-extra-tags": "",
|
2021-03-04 20:44:49 -05:00
|
|
|
}
|
|
|
|
|
|
2023-12-19 00:34:33 -05:00
|
|
|
// GlobalProperties is a map of all valid global registry properties
|
2021-03-04 20:44:49 -05:00
|
|
|
GlobalProperties = map[string]bool{
|
2024-01-19 06:20:43 -05:00
|
|
|
"image-repo-template": true,
|
|
|
|
|
"push-on-release": true,
|
|
|
|
|
"server": true,
|
2024-02-14 18:29:49 +01:00
|
|
|
"push-extra-tags": true,
|
2021-03-04 20:44:49 -05:00
|
|
|
}
|
|
|
|
|
)
|