@@ -16,34 +16,28 @@ critical for cluster-wide virtualization functionality.
1616The responsiveness of KubeVirt might become negatively affected. For example,
1717certain 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,
2020KubeVirt 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
4337such 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