From cc43fcbb7e111cfaf72e776aa7137a59228d285f Mon Sep 17 00:00:00 2001 From: bvwells Date: Fri, 10 Aug 2018 20:55:02 +0100 Subject: [PATCH] Add link to CIS kubernetes benchmark --- README.md | 2 +- cmd/root.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 0b64b12..bf737a1 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ kube-bench logo -kube-bench is a Go application that checks whether Kubernetes is deployed securely by running the checks documented in the CIS Kubernetes Benchmark. +kube-bench is a Go application that checks whether Kubernetes is deployed securely by running the checks documented in the [CIS Kubernetes Benchmark](https://www.cisecurity.org/benchmark/kubernetes/). Tests are configured with YAML files, making this tool easy to update as test specifications evolve. diff --git a/cmd/root.go b/cmd/root.go index a41ea61..5f525a2 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -46,7 +46,7 @@ var ( var RootCmd = &cobra.Command{ Use: os.Args[0], Short: "Run CIS Benchmarks checks against a Kubernetes deployment", - Long: `This tool runs the CIS Kubernetes Benchmark (http://www.cisecurity.org/benchmark/kubernetes/)`, + Long: `This tool runs the CIS Kubernetes Benchmark (https://www.cisecurity.org/benchmark/kubernetes/)`, } // Execute adds all child commands to the root command sets flags appropriately.