Skip to content

Commit 6bcc511

Browse files
authored
Merge pull request #315 from machadovilaca/fix-LowVirtControllersCount
2 parents 9aa4233 + 4ef477a commit 6bcc511

File tree

1 file changed

+7
-13
lines changed

1 file changed

+7
-13
lines changed

docs/runbooks/LowVirtControllersCount.md

Lines changed: 7 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -16,34 +16,28 @@ critical for cluster-wide virtualization functionality.
1616
The responsiveness of KubeVirt might become negatively affected. For example,
1717
certain requests might be missed.
1818

19-
In addition, if another `virt-launcher` instance terminates unexpectedly,
19+
In addition, if another `virt-controller` instance terminates unexpectedly,
2020
KubeVirt might become completely unresponsive.
2121

2222
## Diagnosis
2323

24-
1. Set the `NAMESPACE` environment variable:
24+
1. Verify that running `virt-controller` pods are available:
2525

2626
```bash
27-
$ export NAMESPACE="$(kubectl get kubevirt -A -o custom-columns="":.metadata.namespace)"
27+
$ kubectl -n kubevirt get pods -l kubevirt.io=virt-controller
2828
```
2929

30-
2. Verify that running `virt-controller` pods are available:
30+
2. Check the `virt-controller` logs for error messages:
3131

3232
```bash
33-
$ kubectl -n $NAMESPACE get pods -l kubevirt.io=virt-controller
33+
$ kubectl -n kubevirt logs <virt-controller>
3434
```
3535

36-
3. Check the `virt-launcher` logs for error messages:
37-
38-
```bash
39-
$ kubectl -n $NAMESPACE logs <virt-launcher>
40-
```
41-
42-
4. Obtain the details of the `virt-launcher` pod to check for status conditions
36+
3. Obtain the details of the `virt-controller` pod to check for status conditions
4337
such as unexpected termination or a `NotReady` state.
4438

4539
```bash
46-
$ kubectl -n $NAMESPACE describe pod/<virt-launcher>
40+
$ kubectl -n kubevirt describe pod/<virt-controller>
4741
```
4842

4943
## Mitigation

0 commit comments

Comments
 (0)