mirror of
https://github.com/kubeshark/kubeshark.git
synced 2026-05-13 12:46:59 +00:00
12 lines
198 B
Go
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"`
|
|
}
|