mirror of
https://github.com/kubeshark/kubeshark.git
synced 2025-04-27 19:47:31 +00:00
* Remove `logger` module * Remove `shared` module * Move `cli` folder contents into project root * Fix linter * Change the module name from `github.com/kubeshark/kubeshark/cli` to `github.com/kubeshark/kubeshark` * Set the default `Makefile` rule to `build` * Add `lint` rule * Fix the linter errors
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"`
|
|
}
|