mirror of
https://github.com/aquasecurity/kube-bench.git
synced 2024-11-15 20:39:08 +00:00
d12a45bba9
* common_test: Add a failing test to show the SISEGV Signed-off-by: Simarpreet Singh <simar@linux.com> * common: Go green by fixing isMaster() to instantiate viper Signed-off-by: Simarpreet Singh <simar@linux.com> * common: Inject a seam for getBinariesFunc to be patched-in. Also adds additional tests to showcase unhappy behaviors. Signed-off-by: Simarpreet Singh <simar@linux.com> * common_test: Rename TestIsMaster() Signed-off-by: Simarpreet Singh <simar@linux.com> * common: init viper with master config Signed-off-by: Simarpreet Singh <simar@linux.com> * common: Add a pre-check if valid yaml is passed but doesn't include master. Also adds additional tests to showcase unhappy behaviors. Signed-off-by: Simarpreet Singh <simar@linux.com> * mod: Upgrade viper to v1.4.0 Signed-off-by: Simarpreet Singh <simar@linux.com> * common: Refactor node only yaml to a file Signed-off-by: Simarpreet Singh <simar@linux.com> * common: Log when master components are not found Signed-off-by: Simarpreet Singh <simar@linux.com> * common_test: Refactor subtests into a table Signed-off-by: Simarpreet Singh <simar@linux.com>
25 lines
1.0 KiB
Modula-2
25 lines
1.0 KiB
Modula-2
module github.com/aquasecurity/kube-bench
|
|
|
|
go 1.12
|
|
|
|
require (
|
|
github.com/denisenkom/go-mssqldb v0.0.0-20190515213511-eb9f6a1743f3 // indirect
|
|
github.com/erikstmartin/go-testdb v0.0.0-20160219214506-8d10e4a1bae5 // indirect
|
|
github.com/fatih/color v1.5.0
|
|
github.com/go-sql-driver/mysql v1.4.1 // indirect
|
|
github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b
|
|
github.com/inconshreveable/mousetrap v1.0.0 // indirect
|
|
github.com/jinzhu/gorm v0.0.0-20160404144928-5174cc5c242a
|
|
github.com/jinzhu/inflection v0.0.0-20170102125226-1c35d901db3d // indirect
|
|
github.com/jinzhu/now v1.0.1 // indirect
|
|
github.com/lib/pq v0.0.0-20171126050459-83612a56d3dd // indirect
|
|
github.com/mattn/go-colorable v0.0.0-20170210172801-5411d3eea597 // indirect
|
|
github.com/mattn/go-isatty v0.0.0-20170307163044-57fdcb988a5c // indirect
|
|
github.com/mattn/go-sqlite3 v1.10.0 // indirect
|
|
github.com/spf13/cobra v0.0.1
|
|
github.com/spf13/viper v1.4.0
|
|
github.com/stretchr/testify v1.3.0
|
|
gopkg.in/yaml.v2 v2.2.2
|
|
k8s.io/client-go v10.0.0+incompatible
|
|
)
|