You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
.. Check the status of the OVN pods by running the following command:
417
+
+
418
+
[source,terminal]
419
+
----
420
+
$ oc get po -n openshift-ovn-kubernetes
421
+
----
422
+
+
423
+
424
+
... If any OVN pods are in the `Terminating` status, delete the node that is running that OVN pod by running the following command. Replace `<node>` with the name of the node you are deleting:
425
+
+
426
+
[source,terminal]
427
+
----
428
+
$ oc delete node <node>
429
+
----
430
+
+
431
+
432
+
... Use SSH to log in to the OVN pod node with the `Terminating` status by running the following command:
433
+
+
434
+
[source,terminal]
435
+
----
436
+
$ ssh -i <ssh-key-path> core@<node>
437
+
----
438
+
+
439
+
440
+
... Move all PEM files from the `/var/lib/kubelet/pki` directory by running the following command:
441
+
+
442
+
[source,terminal]
443
+
----
444
+
$ sudo mv /var/lib/kubelet/pki/* /tmp
445
+
----
446
+
+
447
+
448
+
... Restart the kubelet service by running the following command:
449
+
+
450
+
[source,terminal]
451
+
----
452
+
$ sudo systemctl restart kubelet.service
453
+
----
454
+
+
455
+
456
+
... Return to the recovery etcd machines by running the following command:
0 commit comments