Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: critial is a typo #1117

Merged
merged 2 commits into from
Apr 8, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions deploy/crd/clusterconfigauditreports.crd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions deploy/crd/configauditreports.crd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 4 additions & 4 deletions deploy/static/starboard.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/cli/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ kubectl get configauditreport -o wide
<summary>Result</summary>

```
NAME SCANNER AGE CRITIAL HIGH MEDIUM LOW
NAME SCANNER AGE CRITICAL HIGH MEDIUM LOW
replicaset-nginx-78449c65d4 Starboard 75s 0 0 6 7
```
</details>
Expand Down
2 changes: 1 addition & 1 deletion docs/operator/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ kubectl get configauditreports -o wide
<summary>Result</summary>

```
NAME SCANNER AGE CRITIAL HIGH MEDIUM LOW
NAME SCANNER AGE CRITICAL HIGH MEDIUM LOW
replicaset-nginx-78449c65d4 Starboard 2m7s 0 0 6 7
yurrriq marked this conversation as resolved.
Show resolved Hide resolved
```
</details>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
```

Expand Down