diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index c51e40d9..f99d3e99 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -18,7 +18,7 @@ jobs: go-version: 1.16 - name: Build - run: mkdir build && go build -o build/kubescape + run: mkdir build && go mod tidy && go build -o build/kubescape - name: Chmod run: chmod +x build/kubescape diff --git a/README.md b/README.md index 4593e18e..d5735834 100644 --- a/README.md +++ b/README.md @@ -4,3 +4,10 @@ kubescape is a tool for testing Kubernetes clusters against industry accepted se * NSA hardening for Kubernetes operators [see here](https://media.defense.gov/2021/Aug/03/2002820425/-1/-1/1/CTR_KUBERNETES%20HARDENING%20GUIDANCE.PDF) * MITRE threat matrix for Kubernetes [see here](https://www.microsoft.com/security/blog/2020/04/02/attack-matrix-kubernetes/) +# TL;DR +To get a fast check of the security posture of your Kubernetes cluster run this: + +`curl -s https://raw.githubusercontent.com/armosec/kubescape/main/install.sh | /bin/bash` + +# Status +[![build](https://github.com/armosec/kubescape/actions/workflows/build.yaml/badge.svg)](https://github.com/armosec/kubescape/actions/workflows/build.yaml)