mirror of
https://github.com/kubeshark/kubeshark.git
synced 2025-06-09 08:16:29 +00:00
14 lines
277 B
Go
14 lines
277 B
Go
package configStructs
|
|
|
|
const (
|
|
PreTapCheckName = "pre-tap"
|
|
PreInstallCheckName = "pre-install"
|
|
ImagePullCheckName = "image-pull"
|
|
)
|
|
|
|
type CheckConfig struct {
|
|
PreTap bool `yaml:"pre-tap"`
|
|
PreInstall bool `yaml:"pre-install"`
|
|
ImagePull bool `yaml:"image-pull"`
|
|
}
|