Files
kubeshark/config/configStructs/checkConfig.go
2022-11-27 04:31:53 +03:00

12 lines
198 B
Go

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