[Solved] Hello, I have a k3s cluster with embedded...
# k3s
a
[Solved] Hello, I have a k3s cluster with embedded etcd (3 control-plane nodes), but one of the etcd members shows
health = false
. How can I make that etcd member become
true
again? I checked on the k3s node where the etcd member is reported as
false
, and k3s is still running. Should I bring it back to a healthy state by running
systemctl restart k3s
, or should I restart the entire VM of that node?
Copy code
+-----------------------------+--------+--------------+---------------------------+
|          ENDPOINT           | HEALTH |     TOOK     |           ERROR           |
+-----------------------------+--------+--------------+---------------------------+
| <https://10.10.10.10:2379>    |   true |   8.214099ms |                           |
| <https://10.10.10.11:2379>    |   true |   12.05053ms |                           |
| <https://10.10.10.12:2379>    |  false | 5.000873548s | context deadline exceeded |
+-----------------------------+--------+--------------+---------------------------+
I tried restarting the VM of that node and now the etcd member has become
true
again.