diff --git a/deploy/crd/clusterconfigauditreports.crd.yaml b/deploy/crd/clusterconfigauditreports.crd.yaml index a9ad383db..ea6ad889f 100644 --- a/deploy/crd/clusterconfigauditreports.crd.yaml +++ b/deploy/crd/clusterconfigauditreports.crd.yaml @@ -23,9 +23,9 @@ spec: description: The age of the report - jsonPath: .report.summary.criticalCount type: integer - name: Critial + name: Critical priority: 1 - description: The number of failed checks with critial severity + description: The number of failed checks with critical severity - jsonPath: .report.summary.highCount type: integer name: High diff --git a/deploy/crd/configauditreports.crd.yaml b/deploy/crd/configauditreports.crd.yaml index 142f1fd47..231022948 100644 --- a/deploy/crd/configauditreports.crd.yaml +++ b/deploy/crd/configauditreports.crd.yaml @@ -23,9 +23,9 @@ spec: description: The age of the report - jsonPath: .report.summary.criticalCount type: integer - name: Critial + name: Critical priority: 1 - description: The number of failed checks with critial severity + description: The number of failed checks with critical severity - jsonPath: .report.summary.highCount type: integer name: High diff --git a/deploy/static/starboard.yaml b/deploy/static/starboard.yaml index 5f9e82f2d..97633babc 100644 --- a/deploy/static/starboard.yaml +++ b/deploy/static/starboard.yaml @@ -267,9 +267,9 @@ spec: description: The age of the report - jsonPath: .report.summary.criticalCount type: integer - name: Critial + name: Critical priority: 1 - description: The number of failed checks with critial severity + description: The number of failed checks with critical severity - jsonPath: .report.summary.highCount type: integer name: High @@ -324,9 +324,9 @@ spec: description: The age of the report - jsonPath: .report.summary.criticalCount type: integer - name: Critial + name: Critical priority: 1 - description: The number of failed checks with critial severity + description: The number of failed checks with critical severity - jsonPath: .report.summary.highCount type: integer name: High diff --git a/docs/cli/getting-started.md b/docs/cli/getting-started.md index 1280c70c7..3cec2c2f3 100644 --- a/docs/cli/getting-started.md +++ b/docs/cli/getting-started.md @@ -116,7 +116,7 @@ kubectl get configauditreport -o wide Result ``` -NAME SCANNER AGE CRITIAL HIGH MEDIUM LOW +NAME SCANNER AGE CRITICAL HIGH MEDIUM LOW replicaset-nginx-78449c65d4 Starboard 75s 0 0 6 7 ``` diff --git a/docs/operator/getting-started.md b/docs/operator/getting-started.md index fd3684d4a..621eb1ab6 100644 --- a/docs/operator/getting-started.md +++ b/docs/operator/getting-started.md @@ -48,7 +48,7 @@ kubectl get configauditreports -o wide Result ``` -NAME SCANNER AGE CRITIAL HIGH MEDIUM LOW +NAME SCANNER AGE CRITICAL HIGH MEDIUM LOW replicaset-nginx-78449c65d4 Starboard 2m7s 0 0 6 7 ``` diff --git a/docs/tutorials/writing-custom-configuration-audit-policies.md b/docs/tutorials/writing-custom-configuration-audit-policies.md index 453edd4c4..0a8ea1311 100644 --- a/docs/tutorials/writing-custom-configuration-audit-policies.md +++ b/docs/tutorials/writing-custom-configuration-audit-policies.md @@ -157,7 +157,7 @@ that's failing: ```console $ kubectl get configauditreport configmap-test -o wide -NAME SCANNER AGE CRITIAL HIGH MEDIUM LOW +NAME SCANNER AGE CRITICAL HIGH MEDIUM LOW configmap-test Starboard 24s 0 0 0 1 ```