From a54e5d9f8bb5b9a06504d30d6b478f263faa0a14 Mon Sep 17 00:00:00 2001 From: dwertent Date: Thu, 21 Oct 2021 13:25:41 +0300 Subject: [PATCH] update readme with new featurs --- README.md | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 2e52fd04..6bcc3cb6 100644 --- a/README.md +++ b/README.md @@ -98,15 +98,21 @@ kubescape scan framework nsa --submit kubescape scan framework mitre --submit ``` + +* Scan a running Kubernetes cluster with a specific control using the control name or control ID. [List of controls](https://hub.armo.cloud/docs/controls) +``` +kubescape scan control "Privileged container" +``` + * Scan local `yaml`/`json` files before deploying. [Take a look at the demonstration](https://youtu.be/Ox6DaR7_4ZI) ``` kubescape scan framework nsa *.yaml ``` -* Scan `yaml`/`json` files from url +* Scan kubernetes manifest files from a public github repository ``` -kubescape scan framework nsa https://raw.githubusercontent.com/GoogleCloudPlatform/microservices-demo/master/release/kubernetes-manifests.yaml +kubescape scan framework nsa https://github.com/armosec/kubescape ``` * Output in `json` format @@ -193,7 +199,13 @@ go build -o kubescape . 4. Enjoy :zany_face: -## How to build in Docker +## Docker Support + +### Official Docker image +``` +quay.io/armosec/kubescape +``` +### Build your own Docker image 1. Clone Project ```