update naming convention

This commit is contained in:
dwertent
2021-10-28 10:05:30 +03:00
parent 3a78ef46a3
commit ca927dec30
2 changed files with 7 additions and 8 deletions
+2 -2
View File
@@ -87,13 +87,13 @@ Set-ExecutionPolicy RemoteSigned -scope CurrentUser
### Examples
* Scan a running Kubernetes cluster with [`nsa`](https://www.nsa.gov/News-Features/Feature-Stories/Article-View/Article/2716980/nsa-cisa-release-kubernetes-hardening-guidance/) framework and submit results to [ARMO portal](https://portal.armo.cloud/)
* Scan a running Kubernetes cluster with [`nsa`](https://www.nsa.gov/News-Features/Feature-Stories/Article-View/Article/2716980/nsa-cisa-release-kubernetes-hardening-guidance/) framework and submit results to the [Kubescape SaaS version](https://portal.armo.cloud/)
```
kubescape scan framework nsa --submit
```
* Scan a running Kubernetes cluster with [`MITRE ATT&CK®`](https://www.microsoft.com/security/blog/2021/03/23/secure-containerized-environments-with-updated-threat-matrix-for-kubernetes/) framework and submit results to [ARMO portal](https://portal.armo.cloud/)
* Scan a running Kubernetes cluster with [`MITRE ATT&CK®`](https://www.microsoft.com/security/blog/2021/03/23/secure-containerized-environments-with-updated-threat-matrix-for-kubernetes/) framework and submit results to the [Kubescape SaaS version](https://portal.armo.cloud/)
```
kubescape scan framework mitre --submit
```
+5 -6
View File
@@ -7,7 +7,7 @@ You can scan your cluster repeatedly by adding a `CronJob` that will repeatedly
## Scanning & Submitting
If you wish to repeatedly scan and submit the result to the [SaaS UI](https://portal.armo.cloud/) where you can benefit the features the SaaS version provides, please follow this instructions ->
If you wish to repeatedly scan and submit the result to the [Kubescape SaaS version](https://portal.armo.cloud/) where you can benefit the features the SaaS version provides, please follow this instructions ->
1. Apply kubescape namespace
```
@@ -26,7 +26,7 @@ If you wish to repeatedly scan and submit the result to the [SaaS UI](https://po
* Set cluster name:
Run `kubectl config current-context` and set the result in the `data.clusterName` field
* Set account ID:
1. Navigate to the [SaaS UI](https://portal.armo.cloud/) and login/sign up for free
1. Navigate to the [Kubescape SaaS version](https://portal.armo.cloud/) and login/sign up for free
2. Click the `Add Cluster` button on the top right of the page
<img src="screenshots/add-cluster.png" alt="add-cluster">
3. Copy the value of `--account` and set it in the `data.customerGUID` field
@@ -54,9 +54,9 @@ If you wish to repeatedly scan and submit the result to the [SaaS UI](https://po
kubectl apply ks-configMap.yaml
```
4. Apply cronJob
Before you apply the cronJob, make sure the scanning frequency suites your needs
4. Apply CronJob
Before you apply the cronJob, make sure the scanning frequency suites your needs
```
kubectl apply ks-cronJob-submit.yaml
```
@@ -75,10 +75,9 @@ If you wish to repeatedly scan but not submit the scan results, follow this inst
kubectl apply ks-serviceAccount.yaml
```
3. Apply cronJob
3. Apply CronJob
Before you apply the cronJob, make sure the scanning frequency suites your needs
```
kubectl apply ks-cronJob-non-submit.yaml
```