Simplify example for skipping CIS scan tests

This commit is contained in:
Catherine Luse
2020-04-28 11:36:37 -07:00
parent 1183782dc1
commit 7cbf79a44e
@@ -187,17 +187,13 @@ To skip tests by editing a ConfigMap resource,
1. Create a `security-scan` namespace.
1. Create a ConfigMap named `security-scan-cfg`.
1. Enter the skip information under the key `config.json` in the following format. The CIS benchmark version is specified alongside the tests to be skipped for that version:
1. Enter the skip information under the key `config.json` in the following format:
```json
{
"config.json": {
"skip": {
"rke-cis-1.4": [ "1.1.1", "1.2.2"]
}
}
}
```
```
{"skip": {"rke-cis-1.4": [ "1.1.1", "1.2.2"]}}
```
In the example above, the CIS benchmark version is specified alongside the tests to be skipped for that version.
**Result:** These tests will be skipped on subsequent scans that use the defined CIS Benchmark version.