Added check pre install (#905)

This commit is contained in:
RoyUP9
2022-03-21 17:19:04 +02:00
committed by GitHub
parent 7893b4596d
commit cff5987ed4
4 changed files with 75 additions and 24 deletions

View File

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