-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
…stemError-Warning-runbooks Add OperatorConditionsUnhealthy runbook
- Loading branch information
Showing
2 changed files
with
41 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
# OperatorConditionsUnhealthy | ||
|
||
## Meaning | ||
|
||
This alert fires when the and operator conditions or its secondary resources | ||
are in an error or warning state. | ||
|
||
## Impact | ||
|
||
Resources maintained by the operator may not be functioning correctly. | ||
|
||
## Diagnosis | ||
|
||
Check the operator conditions: | ||
|
||
```bash | ||
kubectl get <CR> <CR_OBJECT> -n <namespace> -o jsonpath='{.status.conditions}' | ||
``` | ||
|
||
e.g.: | ||
|
||
```bash | ||
kubectl get HyperConverged kubevirt-hyperconverged -n kubevirt -o jsonpath='{.status.conditions}' | ||
``` | ||
|
||
## Mitigation | ||
|
||
Based on the information obtained during the diagnosis procedure, try to | ||
identify the root cause within the operator or any of its secondary resources | ||
and resolve the issue. | ||
<!--DS: If you cannot resolve the issue, log in to the | ||
link:https://access.redhat.com[Customer Portal] and open a support case, | ||
attaching the artifacts gathered during the diagnosis procedure.--> | ||
|
||
<!--USstart--> | ||
If you cannot resolve the issue, see the following resources: | ||
|
||
- [OKD Help](https://www.okd.io/help/) | ||
- [#virtualization Slack channel](https://kubernetes.slack.com/channels/virtualization) | ||
<!--USend--> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters