Skip to content

Commit

Permalink
Merge pull request #3305 from LiliC/lili/disable-cri-probe
Browse files Browse the repository at this point in the history
Disable CRI probe by default
  • Loading branch information
lilic authored Aug 8, 2018
2 parents 50a83b0 + b971bea commit 701bed6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion prog/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ func setupFlags(flags *flags) {
flag.StringVar(&flags.probe.dockerBridge, "probe.docker.bridge", "docker0", "the docker bridge name")

// CRI
flag.BoolVar(&flags.probe.criEnabled, "probe.cri", true, "collect CRI-related attributes for processes")
flag.BoolVar(&flags.probe.criEnabled, "probe.cri", false, "collect CRI-related attributes for processes")
flag.StringVar(&flags.probe.criEndpoint, "probe.cri.endpoint", "unix///var/run/dockershim.sock", "The endpoint to connect to the CRI")

// K8s
Expand Down

0 comments on commit 701bed6

Please # to comment.