Files
Daniel Grunberger eddbed4363 fix commands
Signed-off-by: Daniel Grunberger <danielgrunberger@armosec.io>
2023-09-05 09:48:15 +03:00

19 lines
567 B
Go

package v1
import "time"
type PatchInfo struct {
Image string // image to be patched
PatchedImageTag string // can be empty, if empty then the image tag will be patched with the latest tag
BuildkitAddress string // buildkit address
Timeout time.Duration // timeout for patching an image
// Image registry credentials
Username string // username for registry login
Password string // password for registry login
// registry.com/namespace/<image>:<tag>
ImageName string // image name
ImageTag string // image tag
}