From cc752913623586ea27104ef49230629d2c8c7921 Mon Sep 17 00:00:00 2001 From: Pawel Wieczorek Date: Sun, 26 May 2019 11:40:36 +0200 Subject: k8s: Add basic structure for validation tool This patch introduces CLI utility for checking if Kubernetes cluster follows security recommendations. Provided Makefile simplifies setup process by setting appropriate environment variables for the build. Further information can be found in README. Provided symlink allows proper document rendering on VCS hosting site. Issue-ID: SECCOM-235 Change-Id: I4a1337c9834322ee4fd742a9ccb979b9bc505f75 Signed-off-by: Pawel Wieczorek --- test/security/k8s/src/check/cmd/check/check.go | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 test/security/k8s/src/check/cmd/check/check.go (limited to 'test/security/k8s/src') diff --git a/test/security/k8s/src/check/cmd/check/check.go b/test/security/k8s/src/check/cmd/check/check.go new file mode 100644 index 000000000..18487e29f --- /dev/null +++ b/test/security/k8s/src/check/cmd/check/check.go @@ -0,0 +1,9 @@ +package main + +import ( + "flag" +) + +func main() { + flag.Parse() +} -- cgit 1.2.3-korg