Added check pull image flag (#899)

Co-authored-by: gadotroee <55343099+gadotroee@users.noreply.github.com>
This commit is contained in:
RoyUP9
2022-03-21 15:24:03 +02:00
committed by GitHub
parent 21902b5f86
commit 482e5c8b69
9 changed files with 436 additions and 384 deletions

View File

@@ -1,9 +1,11 @@
package configStructs
const (
PreTapCheckName = "pre-tap"
PreTapCheckName = "pre-tap"
ImagePullCheckName = "image-pull"
)
type CheckConfig struct {
PreTap bool `yaml:"pre-tap"`
PreTap bool `yaml:"pre-tap"`
ImagePull bool `yaml:"image-pull"`
}