Resolve issue #7 wait: error running audit command exit status 1.
This is caused by a command in the audit pipeline (for example ps -ef | grep kube-apiserver) failing. The causes of this failure in my testing is usually a missing config file. Extensive refactor and correction in verification code to check for config files and binaries. Replace joncalhoun/pipes with implementation using exec.Cmds so errors are visible and can be handled when audit pipeline commands fail. Change some audit commands from: ps -ef | grep <cmd> | grep -v to: ps -C <something> -o comm,args --no-headers which is simpler to work with.
Showing
- cfg/federated.yaml 20 additions, 20 deletionscfg/federated.yaml
- cfg/master.yaml 48 additions, 50 deletionscfg/master.yaml
- cfg/node.yaml 13 additions, 13 deletionscfg/node.yaml
- check/check.go 38 additions, 28 deletionscheck/check.go
- cmd/common.go 111 additions, 89 deletionscmd/common.go
- cmd/root.go 3 additions, 3 deletionscmd/root.go
Loading
Please register or sign in to comment