k3s-io / k3s

Lightweight Kubernetes
https://k3s.io
Apache License 2.0
27.92k stars 2.33k forks source link

Embedded etcd server does not account for exceeding database space #4787

Closed stevefan1999-personal closed 2 years ago

stevefan1999-personal commented 2 years ago

Describe the bug: When you ran k3s long enough with etcd store, you are probably going to see this:

Flag --insecure-port has been deprecated, This flag has no effect now and will be removed in v1.24.{"level":"warn","ts":"2021-12-19T17:34:48.509+0800","logger":"etcd-client","caller":"v3/retry_interceptor.go:62","msg":"retrying of unary invoker failed","target":"etcd-endpoints://0xc01a9ac000/#initially=[https://127.0.0.1:2379]","attempt":0,"error":"rpc error: code = ResourceExhausted desc = etcdserver: mvcc: database space exceeded"}
panic: etcdserver: mvcc: database space exceeded
goroutine 417 [running]:
github.com/rancher/k3s/pkg/cluster.(*Cluster).Start.func1(0xc0336094a0, 0x5959b78, 0xc000936900, 0xc00159cc80)
        /go/src/github.com/rancher/k3s/pkg/cluster/cluster.go:103 +0x1e5created by github.com/rancher/k3s/pkg/cluster.(*Cluster).Start
        /go/src/github.com/rancher/k3s/pkg/cluster/cluster.go:98 +0x6bf

Steps To Reproduce: Find a k3s server with large enough etcd store

Expected behavior: k3s should automatically compact etcd store and continue as usual; if not, start a emergency etcd server that allow the operators to do some rescue work.

Actual behavior: It just crash, so I can't even do manual compaction myself

Backporting

brandond commented 2 years ago

It does automatically compact; this is actually managed by the apiserver. This error indicates that you've exceeded the 2 gigabyte maximum datastore size, which is actually fairly difficult to do. Can you describe a bit more about how you're using this cluster and what you're storing in it?

igas commented 2 years ago

Hi @brandond, I faced a similar issue. I'm not sure if it's related to @stevefan1999-personal issue. But I had a 3 node cluster and one of the nodes started having problems with #3997 I disabled the upgrade on node 2 & 3, but the first node kept failing. I'm not familiar with how k8s/k3s using etcd, and if this failing node could have caused extra info to be written. Now after a few days of first node failing 2 & 3 went down with this issue.

stevefan1999-personal commented 2 years ago

I fixed this by using an emergency etcd setup described in here, but it shouldn't have had been done that way

igas commented 2 years ago

Sadly, my k3s does not start, so etcd is not running to connect to it.

brandond commented 2 years ago

It is extremely unusual to actually have more than 2GB of data in the etcd datastore. I would be curious to know what you've deployed that has pushed the datastore over this limit, if this is not in fact a symptom of some other problem.

ssmall commented 2 years ago

I just started experiencing a similar failure with my 3-node HA k3s cluster -- one master node became unhealthy and after a day or two the other two master nodes went down. They now fail to start with the same error message described in https://github.com/k3s-io/k3s/issues/4787#issue-1084054872

I understand that this may be unusual, but as evidenced by the number of people reporting this same issue it's clearly not unheard of. I'm happy to provide any details that would help you investigate -- I'll even hop on Zoom / Google Meet and we can live debug if that would be helpful. I'd love to get to the bottom of this issue, though, as my cluster is currently unrecoverable.

brandond commented 2 years ago

@ssmall would you be able to describe your cluster and what's running in it? As mentioned above, understanding how K3s is being used when the datastore grows excessively might help us confirm whether there is indeed an issue with how we're managing the etcd datastore, or if there are indeed just some folks storing several GB of data in it. The etcd docs do mention that 8GB is the "suggested maximum", with 2GB just being the default.

On recent releases of K3s, you should be able to start the server with --etcd-arg=quota-backend-bytes=$((8*1024*1024*1024)) to set the max size to 8GB.

ssmall commented 2 years ago

On recent releases of K3s, you should be able to start the server with --etcd-arg=quota-backend-bytes=$((810241024*1024)) to set the max size to 8GB.

I tried adding this to the command line for my master nodes however I'm still seeing the same error on startup.

would you be able to describe your cluster and what's running in it?

I have 3 master nodes and 4 worker nodes for a total of 7. At any given time there are maybe 75-100 pods active, many of which are part of a Longhorn deployment and a couple other daemonsets such as MetalLB. I also run a couple postgresql-ha 3-replica deployments using local storage for persistence. Happy to go more in depth as well if you can give me a hint as to what you're looking for as far as workloads that could be eating up etcd space -- I'm not aware of anything obvious that I'm running which would be using up lots of etcd storage.

brandond commented 2 years ago

Can you post the complete startup logs?

ssmall commented 2 years ago

Please find attached the startup logs from one of the master nodes, big-nuc: syslog.txt

brandond commented 2 years ago

Hmm, I see the increased value being printed out by etcd as it starts: Feb 17 21:09:37 big-nuc k3s[23771]: {"level":"info","ts":"2022-02-17T21:09:37.956-0800","caller":"embed/etcd.go:307","msg":"starting an etcd server","etcd-version":"3.5.0","git-sha":"Not provided (use ./build instead of go build)","go-version":"go1.16.10","go-os":"linux","go-arch":"amd64","max-cpu-set":12,"max-cpu-available":12,"member-initialized":true,"name":"big-nuc-8337f722","data-dir":"/var/lib/rancher/k3s/server/db/etcd","wal-dir":"","wal-dir-dedicated":"","member-dir":"/var/lib/rancher/k3s/server/db/etcd/member","force-new-cluster":false,"heartbeat-interval":"500ms","election-timeout":"5s","initial-election-tick-advance":true,"snapshot-count":100000,"snapshot-catchup-entries":5000,"initial-advertise-peer-urls":["http://localhost:2380"],"listen-peer-urls":["https://192.168.1.31:2380"],"advertise-client-urls":["https://192.168.1.31:2379"],"listen-client-urls":["https://127.0.0.1:2379","https://192.168.1.31:2379"],"listen-metrics-urls":["http://127.0.0.1:2381"],"cors":["*"],"host-whitelist":["*"],"initial-cluster":"","initial-cluster-state":"new","initial-cluster-token":"","quota-size-bytes":8589934592,"pre-vote":true,"initial-corrupt-check":false,"corrupt-check-time-interval":"0s","auto-compaction-mode":"","auto-compaction-retention":"0s","auto-compaction-interval":"0s","discovery-url":"","discovery-proxy":"","downgrade-check-interval":"5s"}

"quota-size-bytes":8589934592

However, it then reports an error when attempting to serve writes: Feb 17 21:09:43 big-nuc k3s[23771]: {"level":"warn","ts":"2022-02-17T21:09:43.404-0800","caller":"etcdserver/util.go:123","msg":"failed to apply request","took":"14.91µs","request":"header:<ID:16997569082376149769 username:\"etcd-client\" auth_revision:1 > txn:<compare:<target:MOD key:\"/bootstrap/ef5238a9efa0\" mod_revision:0 > success:<request_put:<key:\"/bootstrap/ef5238a9efa0\" value_size:12665 >> failure:<>>","response":"","error":"etcdserver: no space"}

I think the problem is that the no space alarm is not cleared on startup; alarms need to be explicitly cleared but we don't currently have any logic in place to do that, and since K3s will exit almost immediately when the alarm is set there's not much of an opportunity to do so manually.

ssmall commented 2 years ago

Can you recommend a path forward to restore my cluster to a working state? I'm not familiar at all with etcd, but I imagine based on what you've said that there may be a command I could run to clear the alarm state?

ssmall commented 2 years ago

Hi @brandond,

Just wondering if there are any steps I can take manually to clear the alarms. As noted in https://github.com/k3s-io/k3s/issues/4787#issuecomment-1004902531, using etcdctl is not an option because k3s is not actually starting up, so there is no endpoint for etcdctl to connect to. I see that you have already merged a fix for this issue, but it would be great to be able to restore my cluster to a working state without having to wait for the next release. It's already been nearly a month (for me) and at this point if I can't get a solution to this issue I may have to spin up a new cluster (using something other than k3s, since there is currently no release of k3s that contains a fix for this issue).

brandond commented 2 years ago

You might be able to grab a standalone etcd binary, and start it up pointed at your db directory? Either that or use the INSTALL_K3S_COMMIT installer environment variable to install a build that has the fix merged.

ssmall commented 2 years ago

Thanks for the reply.

use the INSTALL_K3S_COMMIT installer environment variable to install a build that has the fix merged

Any tips on the correct commit has to use? I tried a couple different hashes from the master branch but the installation script failed with

[INFO]  Using commit 003e094b4526a99aa2f6f97bf987f11429b06d73 as release
[INFO]  Downloading hash https://storage.googleapis.com/k3s-ci-builds/k3s-003e094b4526a99aa2f6f97bf987f11429b06d73.sha256sum
FAIL: 22

I tried to curl the logged URL and saw

$ curl  https://storage.googleapis.com/k3s-ci-builds/k3s-003e094b4526a99aa2f6f97bf987f11429b06d73.sha256sum
<?xml version='1.0' encoding='UTF-8'?><Error><Code>ProjectNotFound</Code><Message>The requested project was not found.</Message><Details>The requested project was not found.</Details></Error>%
ssmall commented 2 years ago

I think the problem is that the no space alarm is not cleared on startup; alarms need to be explicitly cleared but we don't currently have any logic in place to do that, and since K3s will exit almost immediately when the alarm is set there's not much of an opportunity to do so manually.

I tried the route of pointing a standalone etcd binary at /var/lib/rancher/k3s/server/db and it did not appear that this is the problem. The output of etcdctl alarm list is empty. I tried restarting k3s afterward, just in case starting up the standalone etcd had cleared up the alarm state, but I'm still seeing the same error on k3s startup:

Mar 13 17:21:30 big-nuc k3s[4240]: {"level":"warn","ts":"2022-03-13T17:21:30.783-0700","caller":"etcdserver/util.go:123","msg":"failed to apply request","took":"10.558µs","request":"header:<ID:16997569631274120200 username:\"etcd-client\" auth_revision:1 > txn:<compare:<target:MOD key:\"/bootstrap/ef5238a9efa0\" mod_revision:0 > success:<request_put:<key:\"/bootstrap/ef5238a9efa0\" value_size:12665 >> failure:<>>","response":"","error":"etcdserver: no space"}
Mar 13 17:21:30 big-nuc k3s[4240]: {"level":"warn","ts":"2022-03-13T17:21:30.784-0700","logger":"etcd-client","caller":"v3/retry_interceptor.go:62","msg":"retrying of unary invoker failed","target":"etcd-endpoints://0xc0017ac1c0/#initially=[https://127.0.0.1:2379]","attempt":0,"error":"rpc error: code = ResourceExhausted desc = etcdserver: mvcc: database space exceeded"}
Mar 13 17:21:30 big-nuc k3s[4240]: panic: etcdserver: mvcc: database space exceeded
Mar 13 17:21:30 big-nuc k3s[4240]: goroutine 503 [running]:
Mar 13 17:21:30 big-nuc k3s[4240]: github.com/rancher/k3s/pkg/cluster.(*Cluster).Start.func1(0xc02b0413e0, 0x5959b78, 0xc001812a00, 0xc001521a80)
Mar 13 17:21:30 big-nuc k3s[4240]:         /go/src/github.com/rancher/k3s/pkg/cluster/cluster.go:103 +0x1e5
Mar 13 17:21:30 big-nuc k3s[4240]: created by github.com/rancher/k3s/pkg/cluster.(*Cluster).Start
Mar 13 17:21:30 big-nuc k3s[4240]:         /go/src/github.com/rancher/k3s/pkg/cluster/cluster.go:98 +0x6bf
Mar 13 17:21:30 big-nuc systemd[1]: k3s.service: Main process exited, code=exited, status=2/INVALIDARGUMENT
-- Subject: Unit process exited
-- Defined-By: systemd
-- Support: https://www.debian.org/support
--
-- An ExecStart= process belonging to unit k3s.service has exited.
--
-- The process' exit code is 'exited' and its exit status is 2.
Mar 13 17:21:30 big-nuc systemd[1]: k3s.service: Failed with result 'exit-code'.
-- Subject: Unit failed
-- Defined-By: systemd
-- Support: https://www.debian.org/support
--
-- The unit k3s.service has entered the 'failed' state with result 'exit-code'.
Mar 13 17:21:30 big-nuc systemd[1]: Failed to start Lightweight Kubernetes.
-- Subject: A start job for unit k3s.service has failed
-- Defined-By: systemd
-- Support: https://www.debian.org/support
--
-- A start job for unit k3s.service has finished with a failure.
--
-- The job identifier is 4797 and the job result is failed.
Mar 13 17:21:35 big-nuc systemd[1]: k3s.service: Service RestartSec=5s expired, scheduling restart.
Mar 13 17:21:35 big-nuc systemd[1]: k3s.service: Scheduled restart job, restart counter is at 10.
-- Subject: Automatic restarting of a unit has been scheduled
-- Defined-By: systemd
-- Support: https://www.debian.org/support
--
-- Automatic restarting of the unit k3s.service has been scheduled, as the result for
-- the configured Restart= setting for the unit.
Mar 13 17:21:35 big-nuc systemd[1]: Stopped Lightweight Kubernetes.
-- Subject: A stop job for unit k3s.service has finished
-- Defined-By: systemd
-- Support: https://www.debian.org/support
--
-- A stop job for unit k3s.service has finished.
--
-- The job identifier is 4923 and the job result is done.
brandond commented 2 years ago

Try 4b064b5d22ebd1c746763ddbf335a5acda61438a

ssmall commented 2 years ago

Try 4b064b5

Same result with that commit hash, unfortunately.

$ curl https://storage.googleapis.com/k3s-ci-builds/k3s-4b064b5d22ebd1c746763ddbf335a5acda61438a.sha256sum   
<?xml version='1.0' encoding='UTF-8'?><Error><Code>ProjectNotFound</Code><Message>The requested project was not found.</Message><Details>The requested project was not found.</Details></Error>
brandond commented 2 years ago

Hmm. They roll off after 30 days I think? It should still be there. Try the most recent master - currently 29c55f5efcd5fb0374c9bd01dfe2ed8a20817216

ssmall commented 2 years ago

That commit hash worked, but now k3s is failing to start up with a new error:

Mar 16 20:30:47 antikythera k3s[19670]: time="2022-03-16T20:30:47-07:00" level=info msg="Starting k3s v1.23.4+k3s-29c55f5e (29c55f5e)"
Mar 16 20:30:47 antikythera k3s[19670]: time="2022-03-16T20:30:47-07:00" level=info msg="Managed etcd cluster bootstrap already complete and initialized"
Mar 16 20:30:47 antikythera k3s[19670]: time="2022-03-16T20:30:47-07:00" level=info msg="Starting temporary etcd to reconcile with datastore"
Mar 16 20:30:48 antikythera k3s[19670]: {"level":"info","ts":"2022-03-16T20:30:48.718-0700","caller":"embed/etcd.go:131","msg":"configuring peer listeners","listen-peer-urls":["http://127.0.0.1:2400"]}
Mar 16 20:30:48 antikythera k3s[19670]: {"level":"info","ts":"2022-03-16T20:30:48.718-0700","caller":"embed/etcd.go:139","msg":"configuring client listeners","listen-client-urls":["http://127.0.0.1:2399"]}
Mar 16 20:30:48 antikythera k3s[19670]: {"level":"info","ts":"2022-03-16T20:30:48.719-0700","caller":"embed/etcd.go:307","msg":"starting an etcd server","etcd-version":"3.5.1","git-sha":"Not provided (use ./build instead of go build)","go-version":"go1.17.5","go-os":"linux","go-arch":"amd64","max-cpu-set":32,"max-cpu-available":32,"member-initialized":true,"name":"antikythera-0948c62a","data-dir":"/var/lib/rancher/k3s/server/db/etcd-tmp","wal-dir":"","wal-dir-dedicated":"","member-dir":"/var/lib/rancher/k3s/server/db/etcd-tmp/member","force-new-cluster":true,"heartbeat-interval":"500ms","election-timeout":"5s","initial-election-tick-advance":true,"snapshot-count":100000,"snapshot-catchup-entries":5000,"initial-advertise-peer-urls":["http://127.0.0.1:2400"],"listen-peer-urls":["http://127.0.0.1:2400"],"advertise-client-urls":["http://127.0.0.1:2399"],"listen-client-urls":["http://127.0.0.1:2399"],"listen-metrics-urls":[],"cors":["*"],"host-whitelist":["*"],"initial-cluster":"","initial-cluster-state":"new","initial-cluster-token":"","quota-size-bytes":2147483648,"pre-vote":true,"initial-corrupt-check":false,"corrupt-check-time-interval":"0s","auto-compaction-mode":"","auto-compaction-retention":"0s","auto-compaction-interval":"0s","discovery-url":"","discovery-proxy":"","downgrade-check-interval":"5s"}
Mar 16 20:30:48 antikythera k3s[19670]: {"level":"info","ts":"2022-03-16T20:30:48.767-0700","caller":"etcdserver/backend.go:81","msg":"opened backend db","path":"/var/lib/rancher/k3s/server/db/etcd-tmp/member/snap/db","took":"48.706994ms"}
Mar 16 20:30:49 antikythera k3s[19670]: {"level":"info","ts":"2022-03-16T20:30:49.472-0700","caller":"etcdserver/server.go:508","msg":"recovered v2 store from snapshot","snapshot-index":457052414,"snapshot-size":"406 kB"}
Mar 16 20:30:50 antikythera k3s[19670]: {"level":"info","ts":"2022-03-16T20:30:50.720-0700","caller":"etcdserver/server.go:518","msg":"recovered v3 backend from snapshot","backend-size-bytes":357355520,"backend-size":"357 MB","backend-size-in-use-bytes":35020800,"backend-size-in-use":"35 MB"}
Mar 16 20:30:51 antikythera k3s[19670]: {"level":"info","ts":"2022-03-16T20:30:51.216-0700","caller":"etcdserver/raft.go:526","msg":"discarding uncommitted WAL entries","entry-index":457073561,"commit-index-from-wal":457073560,"number-of-discarded-entries":1}
Mar 16 20:30:51 antikythera k3s[19670]: {"level":"info","ts":"2022-03-16T20:30:51.331-0700","caller":"etcdserver/raft.go:556","msg":"forcing restart member","cluster-id":"d1c8afd71ab75419","local-member-id":"fcfb4c91f4fc885c","commit-index":457073562}
Mar 16 20:30:51 antikythera k3s[19670]: {"level":"info","ts":"2022-03-16T20:30:51.331-0700","logger":"raft","caller":"etcdserver/zap_raft.go:77","msg":"fcfb4c91f4fc885c switched to configuration voters=(4601869108914463604 9791417851272883171 18229248106476374108)"}
Mar 16 20:30:51 antikythera k3s[19670]: {"level":"info","ts":"2022-03-16T20:30:51.331-0700","logger":"raft","caller":"etcdserver/zap_raft.go:77","msg":"fcfb4c91f4fc885c became follower at term 68393"}
Mar 16 20:30:51 antikythera k3s[19670]: {"level":"info","ts":"2022-03-16T20:30:51.332-0700","logger":"raft","caller":"etcdserver/zap_raft.go:77","msg":"newRaft fcfb4c91f4fc885c [peers: [3fdd1f92a3b0a374,87e21aa89889ebe3,fcfb4c91f4fc885c], term: 68393, commit: 457073562, applied: 457052414, lastindex: 457073562, lastterm: 68393]"}
Mar 16 20:30:51 antikythera k3s[19670]: {"level":"info","ts":"2022-03-16T20:30:51.332-0700","caller":"api/capability.go:75","msg":"enabled capabilities for version","cluster-version":"3.5"}
Mar 16 20:30:51 antikythera k3s[19670]: {"level":"info","ts":"2022-03-16T20:30:51.332-0700","caller":"membership/cluster.go:278","msg":"recovered/added member from store","cluster-id":"d1c8afd71ab75419","local-member-id":"fcfb4c91f4fc885c","recovered-remote-peer-id":"87e21aa89889ebe3","recovered-remote-peer-urls":["https://192.168.1.31:2380"]}
Mar 16 20:30:51 antikythera k3s[19670]: {"level":"info","ts":"2022-03-16T20:30:51.332-0700","caller":"membership/cluster.go:278","msg":"recovered/added member from store","cluster-id":"d1c8afd71ab75419","local-member-id":"fcfb4c91f4fc885c","recovered-remote-peer-id":"fcfb4c91f4fc885c","recovered-remote-peer-urls":["https://192.168.1.33:2380"]}
Mar 16 20:30:51 antikythera k3s[19670]: {"level":"info","ts":"2022-03-16T20:30:51.332-0700","caller":"membership/cluster.go:278","msg":"recovered/added member from store","cluster-id":"d1c8afd71ab75419","local-member-id":"fcfb4c91f4fc885c","recovered-remote-peer-id":"3fdd1f92a3b0a374","recovered-remote-peer-urls":["https://192.168.1.62:2380"]}
Mar 16 20:30:51 antikythera k3s[19670]: {"level":"info","ts":"2022-03-16T20:30:51.332-0700","caller":"membership/cluster.go:287","msg":"set cluster version from store","cluster-version":"3.5"}
Mar 16 20:30:51 antikythera k3s[19670]: {"level":"warn","ts":"2022-03-16T20:30:51.344-0700","caller":"auth/store.go:1220","msg":"simple token is not cryptographically signed"}
Mar 16 20:30:51 antikythera k3s[19670]: {"level":"info","ts":"2022-03-16T20:30:51.352-0700","caller":"mvcc/kvstore.go:345","msg":"restored last compact revision","meta-bucket-name":"meta","meta-bucket-name-key":"finishedCompactRev","restored-compact-revision":420398777}
Mar 16 20:30:51 antikythera k3s[19670]: {"level":"info","ts":"2022-03-16T20:30:51.421-0700","caller":"mvcc/kvstore.go:415","msg":"kvstore restored","current-rev":420403256}
Mar 16 20:30:51 antikythera k3s[19670]: {"level":"info","ts":"2022-03-16T20:30:51.427-0700","caller":"etcdserver/quota.go:94","msg":"enabled backend quota with default value","quota-name":"v3-applier","quota-size-bytes":2147483648,"quota-size":"2.1 GB"}
Mar 16 20:30:51 antikythera k3s[19670]: {"level":"info","ts":"2022-03-16T20:30:51.436-0700","caller":"rafthttp/peer.go:133","msg":"starting remote peer","remote-peer-id":"3fdd1f92a3b0a374"}
Mar 16 20:30:51 antikythera k3s[19670]: {"level":"info","ts":"2022-03-16T20:30:51.436-0700","caller":"rafthttp/pipeline.go:72","msg":"started HTTP pipelining with remote peer","local-member-id":"fcfb4c91f4fc885c","remote-peer-id":"3fdd1f92a3b0a374"}
Mar 16 20:30:51 antikythera k3s[19670]: {"level":"info","ts":"2022-03-16T20:30:51.436-0700","caller":"rafthttp/stream.go:169","msg":"started stream writer with remote peer","local-member-id":"fcfb4c91f4fc885c","remote-peer-id":"3fdd1f92a3b0a374"}
Mar 16 20:30:51 antikythera k3s[19670]: {"level":"info","ts":"2022-03-16T20:30:51.437-0700","caller":"rafthttp/peer.go:137","msg":"started remote peer","remote-peer-id":"3fdd1f92a3b0a374"}
Mar 16 20:30:51 antikythera k3s[19670]: {"level":"info","ts":"2022-03-16T20:30:51.437-0700","caller":"rafthttp/transport.go:317","msg":"added remote peer","local-member-id":"fcfb4c91f4fc885c","remote-peer-id":"3fdd1f92a3b0a374","remote-peer-urls":["https://192.168.1.62:2380"]}
Mar 16 20:30:51 antikythera k3s[19670]: {"level":"info","ts":"2022-03-16T20:30:51.437-0700","caller":"rafthttp/peer.go:133","msg":"starting remote peer","remote-peer-id":"87e21aa89889ebe3"}
Mar 16 20:30:51 antikythera k3s[19670]: {"level":"info","ts":"2022-03-16T20:30:51.437-0700","caller":"rafthttp/pipeline.go:72","msg":"started HTTP pipelining with remote peer","local-member-id":"fcfb4c91f4fc885c","remote-peer-id":"87e21aa89889ebe3"}
Mar 16 20:30:51 antikythera k3s[19670]: {"level":"info","ts":"2022-03-16T20:30:51.438-0700","caller":"rafthttp/stream.go:169","msg":"started stream writer with remote peer","local-member-id":"fcfb4c91f4fc885c","remote-peer-id":"3fdd1f92a3b0a374"}
Mar 16 20:30:51 antikythera k3s[19670]: {"level":"info","ts":"2022-03-16T20:30:51.437-0700","caller":"rafthttp/stream.go:395","msg":"started stream reader with remote peer","stream-reader-type":"stream MsgApp v2","local-member-id":"fcfb4c91f4fc885c","remote-peer-id":"3fdd1f92a3b0a374"}
Mar 16 20:30:51 antikythera k3s[19670]: {"level":"info","ts":"2022-03-16T20:30:51.439-0700","caller":"rafthttp/peer.go:137","msg":"started remote peer","remote-peer-id":"87e21aa89889ebe3"}
Mar 16 20:30:51 antikythera k3s[19670]: {"level":"info","ts":"2022-03-16T20:30:51.439-0700","caller":"rafthttp/transport.go:317","msg":"added remote peer","local-member-id":"fcfb4c91f4fc885c","remote-peer-id":"87e21aa89889ebe3","remote-peer-urls":["https://192.168.1.31:2380"]}
Mar 16 20:30:51 antikythera k3s[19670]: {"level":"info","ts":"2022-03-16T20:30:51.439-0700","caller":"etcdserver/server.go:834","msg":"starting etcd server","local-member-id":"fcfb4c91f4fc885c","local-server-version":"3.5.1","cluster-id":"d1c8afd71ab75419","cluster-version":"3.5"}
Mar 16 20:30:51 antikythera k3s[19670]: {"level":"info","ts":"2022-03-16T20:30:51.438-0700","caller":"rafthttp/stream.go:395","msg":"started stream reader with remote peer","stream-reader-type":"stream Message","local-member-id":"fcfb4c91f4fc885c","remote-peer-id":"3fdd1f92a3b0a374"}
Mar 16 20:30:51 antikythera k3s[19670]: {"level":"info","ts":"2022-03-16T20:30:51.439-0700","caller":"rafthttp/stream.go:395","msg":"started stream reader with remote peer","stream-reader-type":"stream MsgApp v2","local-member-id":"fcfb4c91f4fc885c","remote-peer-id":"87e21aa89889ebe3"}
Mar 16 20:30:51 antikythera k3s[19670]: {"level":"info","ts":"2022-03-16T20:30:51.439-0700","caller":"rafthttp/stream.go:395","msg":"started stream reader with remote peer","stream-reader-type":"stream Message","local-member-id":"fcfb4c91f4fc885c","remote-peer-id":"87e21aa89889ebe3"}
Mar 16 20:30:51 antikythera k3s[19670]: {"level":"info","ts":"2022-03-16T20:30:51.439-0700","caller":"rafthttp/stream.go:169","msg":"started stream writer with remote peer","local-member-id":"fcfb4c91f4fc885c","remote-peer-id":"87e21aa89889ebe3"}
Mar 16 20:30:51 antikythera k3s[19670]: {"level":"info","ts":"2022-03-16T20:30:51.439-0700","caller":"etcdserver/server.go:744","msg":"starting initial election tick advance","election-ticks":10}
Mar 16 20:30:51 antikythera k3s[19670]: {"level":"info","ts":"2022-03-16T20:30:51.441-0700","caller":"rafthttp/stream.go:169","msg":"started stream writer with remote peer","local-member-id":"fcfb4c91f4fc885c","remote-peer-id":"87e21aa89889ebe3"}
Mar 16 20:30:51 antikythera k3s[19670]: {"level":"info","ts":"2022-03-16T20:30:51.444-0700","caller":"embed/etcd.go:580","msg":"serving peer traffic","address":"127.0.0.1:2400"}
Mar 16 20:30:51 antikythera k3s[19670]: {"level":"info","ts":"2022-03-16T20:30:51.444-0700","caller":"embed/etcd.go:552","msg":"cmux::serve","address":"127.0.0.1:2400"}
Mar 16 20:30:51 antikythera k3s[19670]: {"level":"info","ts":"2022-03-16T20:30:51.444-0700","caller":"embed/etcd.go:276","msg":"now serving peer/client/metrics","local-member-id":"fcfb4c91f4fc885c","initial-advertise-peer-urls":["http://127.0.0.1:2400"],"listen-peer-urls":["http://127.0.0.1:2400"],"advertise-client-urls":["http://127.0.0.1:2399"],"listen-client-urls":["http://127.0.0.1:2399"],"listen-metrics-urls":[]}
Mar 16 20:30:51 antikythera k3s[19670]: {"level":"info","ts":"2022-03-16T20:30:51.786-0700","logger":"raft","caller":"etcdserver/zap_raft.go:77","msg":"fcfb4c91f4fc885c switched to configuration voters=(9791417851272883171 18229248106476374108)"}
Mar 16 20:30:51 antikythera k3s[19670]: {"level":"info","ts":"2022-03-16T20:30:51.786-0700","caller":"membership/cluster.go:472","msg":"removed member","cluster-id":"d1c8afd71ab75419","local-member-id":"fcfb4c91f4fc885c","removed-remote-peer-id":"3fdd1f92a3b0a374","removed-remote-peer-urls":["https://192.168.1.62:2380"]}
Mar 16 20:30:51 antikythera k3s[19670]: {"level":"info","ts":"2022-03-16T20:30:51.786-0700","caller":"rafthttp/peer.go:330","msg":"stopping remote peer","remote-peer-id":"3fdd1f92a3b0a374"}
Mar 16 20:30:51 antikythera k3s[19670]: {"level":"info","ts":"2022-03-16T20:30:51.786-0700","caller":"rafthttp/stream.go:294","msg":"stopped TCP streaming connection with remote peer","stream-writer-type":"unknown stream","remote-peer-id":"3fdd1f92a3b0a374"}
Mar 16 20:30:51 antikythera k3s[19670]: {"level":"info","ts":"2022-03-16T20:30:51.786-0700","caller":"rafthttp/stream.go:294","msg":"stopped TCP streaming connection with remote peer","stream-writer-type":"unknown stream","remote-peer-id":"3fdd1f92a3b0a374"}
Mar 16 20:30:51 antikythera k3s[19670]: {"level":"info","ts":"2022-03-16T20:30:51.786-0700","caller":"rafthttp/pipeline.go:85","msg":"stopped HTTP pipelining with remote peer","local-member-id":"fcfb4c91f4fc885c","remote-peer-id":"3fdd1f92a3b0a374"}
Mar 16 20:30:51 antikythera k3s[19670]: {"level":"info","ts":"2022-03-16T20:30:51.787-0700","caller":"rafthttp/stream.go:442","msg":"stopped stream reader with remote peer","stream-reader-type":"stream MsgApp v2","local-member-id":"fcfb4c91f4fc885c","remote-peer-id":"3fdd1f92a3b0a374"}
Mar 16 20:30:51 antikythera k3s[19670]: {"level":"info","ts":"2022-03-16T20:30:51.787-0700","caller":"rafthttp/stream.go:442","msg":"stopped stream reader with remote peer","stream-reader-type":"stream Message","local-member-id":"fcfb4c91f4fc885c","remote-peer-id":"3fdd1f92a3b0a374"}
Mar 16 20:30:51 antikythera k3s[19670]: {"level":"info","ts":"2022-03-16T20:30:51.787-0700","caller":"rafthttp/peer.go:335","msg":"stopped remote peer","remote-peer-id":"3fdd1f92a3b0a374"}
Mar 16 20:30:51 antikythera k3s[19670]: {"level":"info","ts":"2022-03-16T20:30:51.787-0700","caller":"rafthttp/transport.go:355","msg":"removed remote peer","local-member-id":"fcfb4c91f4fc885c","removed-remote-peer-id":"3fdd1f92a3b0a374"}
Mar 16 20:30:51 antikythera k3s[19670]: {"level":"info","ts":"2022-03-16T20:30:51.787-0700","logger":"raft","caller":"etcdserver/zap_raft.go:77","msg":"fcfb4c91f4fc885c switched to configuration voters=(18229248106476374108)"}
Mar 16 20:30:51 antikythera k3s[19670]: {"level":"info","ts":"2022-03-16T20:30:51.787-0700","caller":"membership/cluster.go:472","msg":"removed member","cluster-id":"d1c8afd71ab75419","local-member-id":"fcfb4c91f4fc885c","removed-remote-peer-id":"87e21aa89889ebe3","removed-remote-peer-urls":["https://192.168.1.31:2380"]}
Mar 16 20:30:51 antikythera k3s[19670]: {"level":"info","ts":"2022-03-16T20:30:51.787-0700","caller":"rafthttp/peer.go:330","msg":"stopping remote peer","remote-peer-id":"87e21aa89889ebe3"}
Mar 16 20:30:51 antikythera k3s[19670]: {"level":"info","ts":"2022-03-16T20:30:51.787-0700","caller":"rafthttp/stream.go:294","msg":"stopped TCP streaming connection with remote peer","stream-writer-type":"unknown stream","remote-peer-id":"87e21aa89889ebe3"}
Mar 16 20:30:51 antikythera k3s[19670]: {"level":"info","ts":"2022-03-16T20:30:51.787-0700","caller":"rafthttp/stream.go:294","msg":"stopped TCP streaming connection with remote peer","stream-writer-type":"unknown stream","remote-peer-id":"87e21aa89889ebe3"}
Mar 16 20:30:51 antikythera k3s[19670]: {"level":"info","ts":"2022-03-16T20:30:51.788-0700","caller":"rafthttp/pipeline.go:85","msg":"stopped HTTP pipelining with remote peer","local-member-id":"fcfb4c91f4fc885c","remote-peer-id":"87e21aa89889ebe3"}
Mar 16 20:30:51 antikythera k3s[19670]: {"level":"info","ts":"2022-03-16T20:30:51.788-0700","caller":"rafthttp/stream.go:442","msg":"stopped stream reader with remote peer","stream-reader-type":"stream MsgApp v2","local-member-id":"fcfb4c91f4fc885c","remote-peer-id":"87e21aa89889ebe3"}
Mar 16 20:30:51 antikythera k3s[19670]: {"level":"info","ts":"2022-03-16T20:30:51.788-0700","caller":"rafthttp/stream.go:442","msg":"stopped stream reader with remote peer","stream-reader-type":"stream Message","local-member-id":"fcfb4c91f4fc885c","remote-peer-id":"87e21aa89889ebe3"}
Mar 16 20:30:51 antikythera k3s[19670]: {"level":"info","ts":"2022-03-16T20:30:51.788-0700","caller":"rafthttp/peer.go:335","msg":"stopped remote peer","remote-peer-id":"87e21aa89889ebe3"}
Mar 16 20:30:51 antikythera k3s[19670]: {"level":"info","ts":"2022-03-16T20:30:51.788-0700","caller":"rafthttp/transport.go:355","msg":"removed remote peer","local-member-id":"fcfb4c91f4fc885c","removed-remote-peer-id":"87e21aa89889ebe3"}
Mar 16 20:31:00 antikythera k3s[19670]: {"level":"info","ts":"2022-03-16T20:31:00.333-0700","logger":"raft","caller":"etcdserver/zap_raft.go:77","msg":"fcfb4c91f4fc885c is starting a new election at term 68393"}
Mar 16 20:31:00 antikythera k3s[19670]: {"level":"info","ts":"2022-03-16T20:31:00.333-0700","logger":"raft","caller":"etcdserver/zap_raft.go:77","msg":"fcfb4c91f4fc885c became pre-candidate at term 68393"}
Mar 16 20:31:00 antikythera k3s[19670]: {"level":"info","ts":"2022-03-16T20:31:00.333-0700","logger":"raft","caller":"etcdserver/zap_raft.go:77","msg":"fcfb4c91f4fc885c received MsgPreVoteResp from fcfb4c91f4fc885c at term 68393"}
Mar 16 20:31:00 antikythera k3s[19670]: {"level":"info","ts":"2022-03-16T20:31:00.333-0700","logger":"raft","caller":"etcdserver/zap_raft.go:77","msg":"fcfb4c91f4fc885c became candidate at term 68394"}
Mar 16 20:31:00 antikythera k3s[19670]: {"level":"info","ts":"2022-03-16T20:31:00.333-0700","logger":"raft","caller":"etcdserver/zap_raft.go:77","msg":"fcfb4c91f4fc885c received MsgVoteResp from fcfb4c91f4fc885c at term 68394"}
Mar 16 20:31:00 antikythera k3s[19670]: {"level":"info","ts":"2022-03-16T20:31:00.333-0700","logger":"raft","caller":"etcdserver/zap_raft.go:77","msg":"fcfb4c91f4fc885c became leader at term 68394"}
Mar 16 20:31:00 antikythera k3s[19670]: {"level":"info","ts":"2022-03-16T20:31:00.333-0700","logger":"raft","caller":"etcdserver/zap_raft.go:77","msg":"raft.node: fcfb4c91f4fc885c elected leader fcfb4c91f4fc885c at term 68394"}
Mar 16 20:31:00 antikythera k3s[19670]: {"level":"info","ts":"2022-03-16T20:31:00.345-0700","caller":"etcdserver/server.go:2029","msg":"published local member to cluster through raft","local-member-id":"fcfb4c91f4fc885c","local-member-attributes":"{Name:antikythera-0948c62a ClientURLs:[http://127.0.0.1:2399]}","request-path":"/0/members/fcfb4c91f4fc885c/attributes","cluster-id":"d1c8afd71ab75419","publish-timeout":"15s"}
Mar 16 20:31:00 antikythera k3s[19670]: {"level":"info","ts":"2022-03-16T20:31:00.346-0700","caller":"embed/serve.go:98","msg":"ready to serve client requests"}
Mar 16 20:31:00 antikythera k3s[19670]: {"level":"info","ts":"2022-03-16T20:31:00.347-0700","caller":"embed/serve.go:140","msg":"serving client traffic insecurely; this is strongly discouraged!","address":"127.0.0.1:2399"}
Mar 16 20:31:00 antikythera k3s[19670]: time="2022-03-16T20:31:00-07:00" level=info msg="etcd temporary data store connection OK"
Mar 16 20:31:00 antikythera k3s[19670]: time="2022-03-16T20:31:00-07:00" level=info msg="Reconciling bootstrap data between datastore and disk"
Mar 16 20:31:00 antikythera k3s[19670]: time="2022-03-16T20:31:00-07:00" level=warning msg=" doesn't exist. continuing..."
Mar 16 20:31:00 antikythera k3s[19670]: time="2022-03-16T20:31:00-07:00" level=warning msg=" doesn't exist. continuing..."
Mar 16 20:31:00 antikythera k3s[19670]: time="2022-03-16T20:31:00-07:00" level=warning msg="updating bootstrap data on disk from datastore"
Mar 16 20:31:00 antikythera k3s[19670]: time="2022-03-16T20:31:00-07:00" level=fatal msg="Failed to reconcile with temporary etcd: failed to write to : open : no such file or directory"
Mar 16 20:31:00 antikythera systemd[1]: k3s.service: Main process exited, code=exited, status=1/FAILURE
Mar 16 20:31:00 antikythera systemd[1]: k3s.service: Failed with result 'exit-code'.
Mar 16 20:31:00 antikythera systemd[1]: Failed to start Lightweight Kubernetes.
Mar 16 20:31:00 antikythera systemd[1]: k3s.service: Consumed 7.674s CPU time.
brandond commented 2 years ago

Hmm, that's odd. Just like that, with the empty paths in the error messages at the end?

ssmall commented 2 years ago

Hmm, that's odd. Just like that, with the empty paths in the error messages at the end?

Correct, I haven't redacted anything from the log.

brandond commented 2 years ago

Can you add --debug to your server args, and try 95f66a049a2a567ec4252c8db177ba5062100a1f ? This should output some more information, and hopefully make it past that error.

ssmall commented 2 years ago

That got me a bit farther. Now the first node starts up and waits around for another node to be reachable. As soon as I start up the second node (same arguments including --etcd-arg=quota-backend-bytes=$((8*1024*1024*1024))) they both start failing again with panic: etcdserver: mvcc: database space exceeded (full logs below)

Click to expand! ``` Mar 17 09:47:39 antikythera systemd[1]: Starting Lightweight Kubernetes... Mar 17 09:47:39 antikythera sh[21877]: + /usr/bin/systemctl is-enabled --quiet nm-cloud-setup.service Mar 17 09:47:39 antikythera sh[21878]: Failed to get unit file state for nm-cloud-setup.service: No such file or directory Mar 17 09:47:39 antikythera k3s[21881]: time="2022-03-17T09:47:39-07:00" level=info msg="Starting k3s v1.23.4+k3s-95f66a04 (95f66a04)" Mar 17 09:47:39 antikythera k3s[21881]: time="2022-03-17T09:47:39-07:00" level=info msg="Managed etcd cluster bootstrap already complete and initialized" Mar 17 09:47:39 antikythera k3s[21881]: time="2022-03-17T09:47:39-07:00" level=warning msg="Cluster CA certificate is not trusted by the host CA bundle, but the token does not include a CA hash. Use the full token from the server's node-token file to enable Cluster CA validation." Mar 17 09:47:39 antikythera k3s[21881]: time="2022-03-17T09:47:39-07:00" level=info msg="Reconciling bootstrap data between datastore and disk" Mar 17 09:47:39 antikythera k3s[21881]: time="2022-03-17T09:47:39-07:00" level=debug msg="Reconciling ETCDServerCA at '/var/lib/rancher/k3s/server/tls/etcd/server-ca.crt'" Mar 17 09:47:39 antikythera k3s[21881]: time="2022-03-17T09:47:39-07:00" level=debug msg="Reconciling IPSECKey at '/var/lib/rancher/k3s/server/cred/ipsec.psk'" Mar 17 09:47:39 antikythera k3s[21881]: time="2022-03-17T09:47:39-07:00" level=debug msg="Reconciling PasswdFile at '/var/lib/rancher/k3s/server/cred/passwd'" Mar 17 09:47:39 antikythera k3s[21881]: time="2022-03-17T09:47:39-07:00" level=debug msg="Reconciling RequestHeaderCA at '/var/lib/rancher/k3s/server/tls/request-header-ca.crt'" Mar 17 09:47:39 antikythera k3s[21881]: time="2022-03-17T09:47:39-07:00" level=debug msg="Reconciling ServiceKey at '/var/lib/rancher/k3s/server/tls/service.key'" Mar 17 09:47:39 antikythera k3s[21881]: time="2022-03-17T09:47:39-07:00" level=debug msg="Reconciling ClientCA at '/var/lib/rancher/k3s/server/tls/client-ca.crt'" Mar 17 09:47:39 antikythera k3s[21881]: time="2022-03-17T09:47:39-07:00" level=debug msg="Reconciling ETCDPeerCA at '/var/lib/rancher/k3s/server/tls/etcd/peer-ca.crt'" Mar 17 09:47:39 antikythera k3s[21881]: time="2022-03-17T09:47:39-07:00" level=debug msg="Reconciling ETCDPeerCAKey at '/var/lib/rancher/k3s/server/tls/etcd/peer-ca.key'" Mar 17 09:47:39 antikythera k3s[21881]: time="2022-03-17T09:47:39-07:00" level=debug msg="Reconciling ServerCA at '/var/lib/rancher/k3s/server/tls/server-ca.crt'" Mar 17 09:47:39 antikythera k3s[21881]: time="2022-03-17T09:47:39-07:00" level=debug msg="Reconciling ServerCAKey at '/var/lib/rancher/k3s/server/tls/server-ca.key'" Mar 17 09:47:39 antikythera k3s[21881]: time="2022-03-17T09:47:39-07:00" level=debug msg="Reconciling ClientCAKey at '/var/lib/rancher/k3s/server/tls/client-ca.key'" Mar 17 09:47:39 antikythera k3s[21881]: time="2022-03-17T09:47:39-07:00" level=debug msg="Reconciling ETCDServerCAKey at '/var/lib/rancher/k3s/server/tls/etcd/server-ca.key'" Mar 17 09:47:39 antikythera k3s[21881]: time="2022-03-17T09:47:39-07:00" level=debug msg="Reconciling RequestHeaderCAKey at '/var/lib/rancher/k3s/server/tls/request-header-ca.key'" Mar 17 09:47:39 antikythera k3s[21881]: time="2022-03-17T09:47:39-07:00" level=info msg="Successfully reconciled with datastore" Mar 17 09:47:39 antikythera k3s[21881]: time="2022-03-17T09:47:39-07:00" level=info msg="Starting etcd for existing cluster member" Mar 17 09:47:39 antikythera k3s[21881]: time="2022-03-17T09:47:39-07:00" level=info msg="certificate CN=k3s,O=k3s signed by CN=k3s-server-ca@1607286236: notBefore=2020-12-06 20:23:56 +0000 UTC notAfter=2023-03-17 16:47:39 +0000 UTC" Mar 17 09:47:39 antikythera k3s[21881]: {"level":"info","ts":"2022-03-17T09:47:39.642-0700","caller":"embed/etcd.go:131","msg":"configuring peer listeners","listen-peer-urls":["https://192.168.1.33:2380"]} Mar 17 09:47:39 antikythera k3s[21881]: {"level":"info","ts":"2022-03-17T09:47:39.642-0700","caller":"embed/etcd.go:478","msg":"starting with peer TLS","tls-info":"cert = /var/lib/rancher/k3s/server/tls/etcd/peer-server-client.crt, key = /var/lib/rancher/k3s/server/tls/etcd/peer-server-client.key, client-cert=, client-key=, trusted-ca = /var/lib/rancher/k3s/server/tls/etcd/peer-ca.crt, client-cert-auth = true, crl-file = ","cipher-suites":[]} Mar 17 09:47:39 antikythera k3s[21881]: {"level":"info","ts":"2022-03-17T09:47:39.642-0700","caller":"embed/etcd.go:139","msg":"configuring client listeners","listen-client-urls":["https://127.0.0.1:2379","https://192.168.1.33:2379"]} Mar 17 09:47:39 antikythera k3s[21881]: {"level":"info","ts":"2022-03-17T09:47:39.642-0700","caller":"embed/etcd.go:307","msg":"starting an etcd server","etcd-version":"3.5.1","git-sha":"Not provided (use ./build instead of go build)","go-version":"go1.17.5","go-os":"linux","go-arch":"amd64","max-cpu-set":32,"max-cpu-available":32,"member-initialized":true,"name":"antikythera-0948c62a","data-dir":"/var/lib/rancher/k3s/server/db/etcd","wal-dir":"","wal-dir-dedicated":"","member-dir":"/var/lib/rancher/k3s/server/db/etcd/member","force-new-cluster":false,"heartbeat-interval":"500ms","election-timeout":"5s","initial-election-tick-advance":true,"snapshot-count":100000,"snapshot-catchup-entries":5000,"initial-advertise-peer-urls":["http://localhost:2380"],"listen-peer-urls":["https://192.168.1.33:2380"],"advertise-client-urls":["https://192.168.1.33:2379"],"listen-client-urls":["https://127.0.0.1:2379","https://192.168.1.33:2379"],"listen-metrics-urls":["http://127.0.0.1:2381"],"cors":["*"],"host-whitelist":["*"],"initial-cluster":"","initial-cluster-state":"new","initial-cluster-token":"","quota-size-bytes":10737418240,"pre-vote":true,"initial-corrupt-check":false,"corrupt-check-time-interval":"0s","auto-compaction-mode":"","auto-compaction-retention":"0s","auto-compaction-interval":"0s","discovery-url":"","discovery-proxy":"","downgrade-check-interval":"5s"} Mar 17 09:47:39 antikythera k3s[21881]: {"level":"info","ts":"2022-03-17T09:47:39.701-0700","caller":"etcdserver/backend.go:81","msg":"opened backend db","path":"/var/lib/rancher/k3s/server/db/etcd/member/snap/db","took":"58.162846ms"} Mar 17 09:47:40 antikythera k3s[21881]: {"level":"info","ts":"2022-03-17T09:47:40.381-0700","caller":"etcdserver/server.go:508","msg":"recovered v2 store from snapshot","snapshot-index":457052414,"snapshot-size":"406 kB"} Mar 17 09:47:40 antikythera k3s[21881]: {"level":"info","ts":"2022-03-17T09:47:40.381-0700","caller":"etcdserver/server.go:518","msg":"recovered v3 backend from snapshot","backend-size-bytes":357355520,"backend-size":"357 MB","backend-size-in-use-bytes":35020800,"backend-size-in-use":"35 MB"} Mar 17 09:47:40 antikythera k3s[21881]: {"level":"info","ts":"2022-03-17T09:47:40.837-0700","caller":"etcdserver/raft.go:483","msg":"restarting local member","cluster-id":"d1c8afd71ab75419","local-member-id":"fcfb4c91f4fc885c","commit-index":457073643} Mar 17 09:47:40 antikythera k3s[21881]: {"level":"info","ts":"2022-03-17T09:47:40.839-0700","logger":"raft","caller":"etcdserver/zap_raft.go:77","msg":"fcfb4c91f4fc885c switched to configuration voters=(4601869108914463604 9791417851272883171 18229248106476374108)"} Mar 17 09:47:40 antikythera k3s[21881]: {"level":"info","ts":"2022-03-17T09:47:40.839-0700","logger":"raft","caller":"etcdserver/zap_raft.go:77","msg":"fcfb4c91f4fc885c became follower at term 68404"} Mar 17 09:47:40 antikythera k3s[21881]: {"level":"info","ts":"2022-03-17T09:47:40.839-0700","logger":"raft","caller":"etcdserver/zap_raft.go:77","msg":"newRaft fcfb4c91f4fc885c [peers: [3fdd1f92a3b0a374,87e21aa89889ebe3,fcfb4c91f4fc885c], term: 68404, commit: 457073643, applied: 457052414, lastindex: 457073644, lastterm: 68404]"} Mar 17 09:47:40 antikythera k3s[21881]: {"level":"info","ts":"2022-03-17T09:47:40.839-0700","caller":"api/capability.go:75","msg":"enabled capabilities for version","cluster-version":"3.5"} Mar 17 09:47:40 antikythera k3s[21881]: {"level":"info","ts":"2022-03-17T09:47:40.839-0700","caller":"membership/cluster.go:278","msg":"recovered/added member from store","cluster-id":"d1c8afd71ab75419","local-member-id":"fcfb4c91f4fc885c","recovered-remote-peer-id":"3fdd1f92a3b0a374","recovered-remote-peer-urls":["https://192.168.1.62:2380"]} Mar 17 09:47:40 antikythera k3s[21881]: {"level":"info","ts":"2022-03-17T09:47:40.839-0700","caller":"membership/cluster.go:278","msg":"recovered/added member from store","cluster-id":"d1c8afd71ab75419","local-member-id":"fcfb4c91f4fc885c","recovered-remote-peer-id":"87e21aa89889ebe3","recovered-remote-peer-urls":["https://192.168.1.31:2380"]} Mar 17 09:47:40 antikythera k3s[21881]: {"level":"info","ts":"2022-03-17T09:47:40.839-0700","caller":"membership/cluster.go:278","msg":"recovered/added member from store","cluster-id":"d1c8afd71ab75419","local-member-id":"fcfb4c91f4fc885c","recovered-remote-peer-id":"fcfb4c91f4fc885c","recovered-remote-peer-urls":["https://192.168.1.33:2380"]} Mar 17 09:47:40 antikythera k3s[21881]: {"level":"info","ts":"2022-03-17T09:47:40.839-0700","caller":"membership/cluster.go:287","msg":"set cluster version from store","cluster-version":"3.5"} Mar 17 09:47:40 antikythera k3s[21881]: {"level":"warn","ts":"2022-03-17T09:47:40.857-0700","caller":"auth/store.go:1220","msg":"simple token is not cryptographically signed"} Mar 17 09:47:40 antikythera k3s[21881]: {"level":"info","ts":"2022-03-17T09:47:40.865-0700","caller":"mvcc/kvstore.go:345","msg":"restored last compact revision","meta-bucket-name":"meta","meta-bucket-name-key":"finishedCompactRev","restored-compact-revision":420398777} Mar 17 09:47:40 antikythera k3s[21881]: {"level":"info","ts":"2022-03-17T09:47:40.940-0700","caller":"mvcc/kvstore.go:415","msg":"kvstore restored","current-rev":420403256} Mar 17 09:47:40 antikythera k3s[21881]: {"level":"warn","ts":"2022-03-17T09:47:40.949-0700","caller":"etcdserver/quota.go:108","msg":"quota exceeds the maximum value","quota-name":"v3-applier","quota-size-bytes":10737418240,"quota-size":"11 GB","quota-maximum-size-bytes":8589934592,"quota-maximum-size":"8.6 GB"} Mar 17 09:47:40 antikythera k3s[21881]: {"level":"info","ts":"2022-03-17T09:47:40.949-0700","caller":"etcdserver/quota.go:117","msg":"enabled backend quota","quota-name":"v3-applier","quota-size-bytes":10737418240,"quota-size":"11 GB"} Mar 17 09:47:40 antikythera k3s[21881]: {"level":"info","ts":"2022-03-17T09:47:40.958-0700","caller":"rafthttp/peer.go:133","msg":"starting remote peer","remote-peer-id":"3fdd1f92a3b0a374"} Mar 17 09:47:40 antikythera k3s[21881]: {"level":"info","ts":"2022-03-17T09:47:40.958-0700","caller":"rafthttp/pipeline.go:72","msg":"started HTTP pipelining with remote peer","local-member-id":"fcfb4c91f4fc885c","remote-peer-id":"3fdd1f92a3b0a374"} Mar 17 09:47:40 antikythera k3s[21881]: {"level":"info","ts":"2022-03-17T09:47:40.959-0700","caller":"rafthttp/stream.go:169","msg":"started stream writer with remote peer","local-member-id":"fcfb4c91f4fc885c","remote-peer-id":"3fdd1f92a3b0a374"} Mar 17 09:47:40 antikythera k3s[21881]: {"level":"info","ts":"2022-03-17T09:47:40.959-0700","caller":"rafthttp/stream.go:169","msg":"started stream writer with remote peer","local-member-id":"fcfb4c91f4fc885c","remote-peer-id":"3fdd1f92a3b0a374"} Mar 17 09:47:40 antikythera k3s[21881]: {"level":"info","ts":"2022-03-17T09:47:40.959-0700","caller":"rafthttp/peer.go:137","msg":"started remote peer","remote-peer-id":"3fdd1f92a3b0a374"} Mar 17 09:47:40 antikythera k3s[21881]: {"level":"info","ts":"2022-03-17T09:47:40.960-0700","caller":"rafthttp/transport.go:317","msg":"added remote peer","local-member-id":"fcfb4c91f4fc885c","remote-peer-id":"3fdd1f92a3b0a374","remote-peer-urls":["https://192.168.1.62:2380"]} Mar 17 09:47:40 antikythera k3s[21881]: {"level":"info","ts":"2022-03-17T09:47:40.960-0700","caller":"rafthttp/peer.go:133","msg":"starting remote peer","remote-peer-id":"87e21aa89889ebe3"} Mar 17 09:47:40 antikythera k3s[21881]: {"level":"info","ts":"2022-03-17T09:47:40.960-0700","caller":"rafthttp/stream.go:395","msg":"started stream reader with remote peer","stream-reader-type":"stream MsgApp v2","local-member-id":"fcfb4c91f4fc885c","remote-peer-id":"3fdd1f92a3b0a374"} Mar 17 09:47:40 antikythera k3s[21881]: {"level":"info","ts":"2022-03-17T09:47:40.960-0700","caller":"rafthttp/pipeline.go:72","msg":"started HTTP pipelining with remote peer","local-member-id":"fcfb4c91f4fc885c","remote-peer-id":"87e21aa89889ebe3"} Mar 17 09:47:40 antikythera k3s[21881]: {"level":"info","ts":"2022-03-17T09:47:40.960-0700","caller":"rafthttp/stream.go:395","msg":"started stream reader with remote peer","stream-reader-type":"stream Message","local-member-id":"fcfb4c91f4fc885c","remote-peer-id":"3fdd1f92a3b0a374"} Mar 17 09:47:40 antikythera k3s[21881]: {"level":"info","ts":"2022-03-17T09:47:40.960-0700","caller":"rafthttp/stream.go:169","msg":"started stream writer with remote peer","local-member-id":"fcfb4c91f4fc885c","remote-peer-id":"87e21aa89889ebe3"} Mar 17 09:47:40 antikythera k3s[21881]: {"level":"info","ts":"2022-03-17T09:47:40.961-0700","caller":"rafthttp/stream.go:169","msg":"started stream writer with remote peer","local-member-id":"fcfb4c91f4fc885c","remote-peer-id":"87e21aa89889ebe3"} Mar 17 09:47:40 antikythera k3s[21881]: {"level":"info","ts":"2022-03-17T09:47:40.961-0700","caller":"rafthttp/peer.go:137","msg":"started remote peer","remote-peer-id":"87e21aa89889ebe3"} Mar 17 09:47:40 antikythera k3s[21881]: {"level":"info","ts":"2022-03-17T09:47:40.961-0700","caller":"rafthttp/transport.go:317","msg":"added remote peer","local-member-id":"fcfb4c91f4fc885c","remote-peer-id":"87e21aa89889ebe3","remote-peer-urls":["https://192.168.1.31:2380"]} Mar 17 09:47:40 antikythera k3s[21881]: {"level":"info","ts":"2022-03-17T09:47:40.961-0700","caller":"rafthttp/stream.go:395","msg":"started stream reader with remote peer","stream-reader-type":"stream MsgApp v2","local-member-id":"fcfb4c91f4fc885c","remote-peer-id":"87e21aa89889ebe3"} Mar 17 09:47:40 antikythera k3s[21881]: {"level":"info","ts":"2022-03-17T09:47:40.961-0700","caller":"etcdserver/server.go:834","msg":"starting etcd server","local-member-id":"fcfb4c91f4fc885c","local-server-version":"3.5.1","cluster-id":"d1c8afd71ab75419","cluster-version":"3.5"} Mar 17 09:47:40 antikythera k3s[21881]: {"level":"info","ts":"2022-03-17T09:47:40.961-0700","caller":"rafthttp/stream.go:395","msg":"started stream reader with remote peer","stream-reader-type":"stream Message","local-member-id":"fcfb4c91f4fc885c","remote-peer-id":"87e21aa89889ebe3"} Mar 17 09:47:40 antikythera k3s[21881]: {"level":"info","ts":"2022-03-17T09:47:40.961-0700","caller":"etcdserver/server.go:744","msg":"starting initial election tick advance","election-ticks":10} Mar 17 09:47:40 antikythera k3s[21881]: {"level":"info","ts":"2022-03-17T09:47:40.968-0700","caller":"rafthttp/peer_status.go:53","msg":"peer became active","peer-id":"87e21aa89889ebe3"} Mar 17 09:47:40 antikythera k3s[21881]: {"level":"info","ts":"2022-03-17T09:47:40.968-0700","caller":"rafthttp/stream.go:412","msg":"established TCP streaming connection with remote peer","stream-reader-type":"stream MsgApp v2","local-member-id":"fcfb4c91f4fc885c","remote-peer-id":"87e21aa89889ebe3"} Mar 17 09:47:40 antikythera k3s[21881]: {"level":"info","ts":"2022-03-17T09:47:40.970-0700","caller":"embed/etcd.go:687","msg":"starting with client TLS","tls-info":"cert = /var/lib/rancher/k3s/server/tls/etcd/server-client.crt, key = /var/lib/rancher/k3s/server/tls/etcd/server-client.key, client-cert=, client-key=, trusted-ca = /var/lib/rancher/k3s/server/tls/etcd/server-ca.crt, client-cert-auth = true, crl-file = ","cipher-suites":[]} Mar 17 09:47:40 antikythera k3s[21881]: {"level":"info","ts":"2022-03-17T09:47:40.970-0700","caller":"embed/etcd.go:580","msg":"serving peer traffic","address":"192.168.1.33:2380"} Mar 17 09:47:40 antikythera k3s[21881]: {"level":"info","ts":"2022-03-17T09:47:40.970-0700","caller":"embed/etcd.go:552","msg":"cmux::serve","address":"192.168.1.33:2380"} Mar 17 09:47:40 antikythera k3s[21881]: {"level":"info","ts":"2022-03-17T09:47:40.970-0700","caller":"embed/etcd.go:276","msg":"now serving peer/client/metrics","local-member-id":"fcfb4c91f4fc885c","initial-advertise-peer-urls":["http://localhost:2380"],"listen-peer-urls":["https://192.168.1.33:2380"],"advertise-client-urls":["https://192.168.1.33:2379"],"listen-client-urls":["https://127.0.0.1:2379","https://192.168.1.33:2379"],"listen-metrics-urls":["http://127.0.0.1:2381"]} Mar 17 09:47:40 antikythera k3s[21881]: {"level":"info","ts":"2022-03-17T09:47:40.970-0700","caller":"embed/etcd.go:762","msg":"serving metrics","address":"http://127.0.0.1:2381"} Mar 17 09:47:40 antikythera k3s[21881]: {"level":"info","ts":"2022-03-17T09:47:40.971-0700","caller":"rafthttp/stream.go:412","msg":"established TCP streaming connection with remote peer","stream-reader-type":"stream Message","local-member-id":"fcfb4c91f4fc885c","remote-peer-id":"87e21aa89889ebe3"} Mar 17 09:47:40 antikythera k3s[21881]: {"level":"info","ts":"2022-03-17T09:47:40.972-0700","caller":"rafthttp/stream.go:249","msg":"set message encoder","from":"fcfb4c91f4fc885c","to":"87e21aa89889ebe3","stream-type":"stream MsgApp v2"} Mar 17 09:47:40 antikythera k3s[21881]: {"level":"info","ts":"2022-03-17T09:47:40.972-0700","caller":"rafthttp/stream.go:274","msg":"established TCP streaming connection with remote peer","stream-writer-type":"stream MsgApp v2","local-member-id":"fcfb4c91f4fc885c","remote-peer-id":"87e21aa89889ebe3"} Mar 17 09:47:40 antikythera k3s[21881]: time="2022-03-17T09:47:40-07:00" level=info msg="Running kube-apiserver --advertise-port=6443 --allow-privileged=true --anonymous-auth=false --api-audiences=https://kubernetes.default.svc.cluster.local,k3s --authorization-mode=Node,RBAC --bind-address=127.0.0.1 --cert-dir=/var/lib/rancher/k3s/server/tls/temporary-certs --client-ca-file=/var/lib/rancher/k3s/server/tls/client-ca.crt --enable-admission-plugins=NodeRestriction --etcd-cafile=/var/lib/rancher/k3s/server/tls/etcd/server-ca.crt --etcd-certfile=/var/lib/rancher/k3s/server/tls/etcd/client.crt --etcd-keyfile=/var/lib/rancher/k3s/server/tls/etcd/client.key --etcd-servers=https://127.0.0.1:2379 --feature-gates=JobTrackingWithFinalizers=true --insecure-port=0 --kubelet-certificate-authority=/var/lib/rancher/k3s/server/tls/server-ca.crt --kubelet-client-certificate=/var/lib/rancher/k3s/server/tls/client-kube-apiserver.crt --kubelet-client-key=/var/lib/rancher/k3s/server/tls/client-kube-apiserver.key --profiling=false --proxy-client-cert-file=/var/lib/rancher/k3s/server/tls/client-auth-proxy.crt --proxy-client-key-file=/var/lib/rancher/k3s/server/tls/client-auth-proxy.key --requestheader-allowed-names=system:auth-proxy --requestheader-client-ca-file=/var/lib/rancher/k3s/server/tls/request-header-ca.crt --requestheader-extra-headers-prefix=X-Remote-Extra- --requestheader-group-headers=X-Remote-Group --requestheader-username-headers=X-Remote-User --secure-port=6444 --service-account-issuer=https://kubernetes.default.svc.cluster.local --service-account-key-file=/var/lib/rancher/k3s/server/tls/service.key --service-account-signing-key-file=/var/lib/rancher/k3s/server/tls/service.key --service-cluster-ip-range=10.43.0.0/16 --service-node-port-range=30000-32767 --storage-backend=etcd3 --tls-cert-file=/var/lib/rancher/k3s/server/tls/serving-kube-apiserver.crt --tls-private-key-file=/var/lib/rancher/k3s/server/tls/serving-kube-apiserver.key" Mar 17 09:47:40 antikythera k3s[21881]: {"level":"info","ts":"2022-03-17T09:47:40.972-0700","caller":"rafthttp/stream.go:249","msg":"set message encoder","from":"fcfb4c91f4fc885c","to":"87e21aa89889ebe3","stream-type":"stream Message"} Mar 17 09:47:40 antikythera k3s[21881]: {"level":"info","ts":"2022-03-17T09:47:40.971-0700","logger":"raft","caller":"etcdserver/zap_raft.go:77","msg":"raft.node: fcfb4c91f4fc885c elected leader 87e21aa89889ebe3 at term 68404"} Mar 17 09:47:40 antikythera k3s[21881]: {"level":"info","ts":"2022-03-17T09:47:40.973-0700","caller":"rafthttp/stream.go:274","msg":"established TCP streaming connection with remote peer","stream-writer-type":"stream Message","local-member-id":"fcfb4c91f4fc885c","remote-peer-id":"87e21aa89889ebe3"} Mar 17 09:47:40 antikythera k3s[21881]: time="2022-03-17T09:47:40-07:00" level=info msg="Running kube-scheduler --authentication-kubeconfig=/var/lib/rancher/k3s/server/cred/scheduler.kubeconfig --authorization-kubeconfig=/var/lib/rancher/k3s/server/cred/scheduler.kubeconfig --bind-address=127.0.0.1 --kubeconfig=/var/lib/rancher/k3s/server/cred/scheduler.kubeconfig --profiling=false --secure-port=10259" Mar 17 09:47:40 antikythera k3s[21881]: time="2022-03-17T09:47:40-07:00" level=info msg="Running kube-controller-manager --allocate-node-cidrs=true --authentication-kubeconfig=/var/lib/rancher/k3s/server/cred/controller.kubeconfig --authorization-kubeconfig=/var/lib/rancher/k3s/server/cred/controller.kubeconfig --bind-address=127.0.0.1 --cluster-cidr=10.42.0.0/16 --cluster-signing-kube-apiserver-client-cert-file=/var/lib/rancher/k3s/server/tls/client-ca.crt --cluster-signing-kube-apiserver-client-key-file=/var/lib/rancher/k3s/server/tls/client-ca.key --cluster-signing-kubelet-client-cert-file=/var/lib/rancher/k3s/server/tls/client-ca.crt --cluster-signing-kubelet-client-key-file=/var/lib/rancher/k3s/server/tls/client-ca.key --cluster-signing-kubelet-serving-cert-file=/var/lib/rancher/k3s/server/tls/server-ca.crt --cluster-signing-kubelet-serving-key-file=/var/lib/rancher/k3s/server/tls/server-ca.key --cluster-signing-legacy-unknown-cert-file=/var/lib/rancher/k3s/server/tls/server-ca.crt --cluster-signing-legacy-unknown-key-file=/var/lib/rancher/k3s/server/tls/server-ca.key --configure-cloud-routes=false --controllers=*,-service,-route,-cloud-node-lifecycle --feature-gates=JobTrackingWithFinalizers=true --kubeconfig=/var/lib/rancher/k3s/server/cred/controller.kubeconfig --profiling=false --root-ca-file=/var/lib/rancher/k3s/server/tls/server-ca.crt --secure-port=10257 --service-account-private-key-file=/var/lib/rancher/k3s/server/tls/service.key --use-service-account-credentials=true" Mar 17 09:47:40 antikythera k3s[21881]: time="2022-03-17T09:47:40-07:00" level=info msg="Running cloud-controller-manager --allocate-node-cidrs=true --authentication-kubeconfig=/var/lib/rancher/k3s/server/cred/cloud-controller.kubeconfig --authorization-kubeconfig=/var/lib/rancher/k3s/server/cred/cloud-controller.kubeconfig --bind-address=127.0.0.1 --cloud-provider=k3s --cluster-cidr=10.42.0.0/16 --configure-cloud-routes=false --kubeconfig=/var/lib/rancher/k3s/server/cred/cloud-controller.kubeconfig --node-status-update-frequency=1m0s --port=0 --profiling=false" Mar 17 09:47:40 antikythera k3s[21881]: time="2022-03-17T09:47:40-07:00" level=info msg="Node token is available at /var/lib/rancher/k3s/server/token" Mar 17 09:47:40 antikythera k3s[21881]: time="2022-03-17T09:47:40-07:00" level=info msg="To join node to cluster: k3s agent -s https://192.168.1.33:6443 -t ${NODE_TOKEN}" Mar 17 09:47:40 antikythera k3s[21881]: time="2022-03-17T09:47:40-07:00" level=info msg="Wrote kubeconfig /etc/rancher/k3s/k3s.yaml" Mar 17 09:47:40 antikythera k3s[21881]: time="2022-03-17T09:47:40-07:00" level=info msg="Run: k3s kubectl" Mar 17 09:47:40 antikythera k3s[21881]: time="2022-03-17T09:47:40-07:00" level=info msg="Cluster-Http-Server 2022/03/17 09:47:40 http: TLS handshake error from 127.0.0.1:58116: remote error: tls: bad certificate" Mar 17 09:47:40 antikythera k3s[21881]: time="2022-03-17T09:47:40-07:00" level=info msg="Cluster-Http-Server 2022/03/17 09:47:40 http: TLS handshake error from 127.0.0.1:58122: remote error: tls: bad certificate" Mar 17 09:47:41 antikythera k3s[21881]: time="2022-03-17T09:47:41-07:00" level=debug msg="password verified locally for node 'antikythera'" Mar 17 09:47:41 antikythera k3s[21881]: time="2022-03-17T09:47:41-07:00" level=info msg="certificate CN=antikythera signed by CN=k3s-server-ca@1607286236: notBefore=2020-12-06 20:23:56 +0000 UTC notAfter=2023-03-17 16:47:41 +0000 UTC" Mar 17 09:47:41 antikythera k3s[21881]: time="2022-03-17T09:47:41-07:00" level=debug msg="password verified locally for node 'antikythera'" Mar 17 09:47:41 antikythera k3s[21881]: time="2022-03-17T09:47:41-07:00" level=info msg="certificate CN=system:node:antikythera,O=system:nodes signed by CN=k3s-client-ca@1607286236: notBefore=2020-12-06 20:23:56 +0000 UTC notAfter=2023-03-17 16:47:41 +0000 UTC" Mar 17 09:47:41 antikythera k3s[21881]: time="2022-03-17T09:47:41-07:00" level=info msg="Module overlay was already loaded" Mar 17 09:47:41 antikythera k3s[21881]: time="2022-03-17T09:47:41-07:00" level=info msg="Module nf_conntrack was already loaded" Mar 17 09:47:41 antikythera k3s[21881]: time="2022-03-17T09:47:41-07:00" level=info msg="Module br_netfilter was already loaded" Mar 17 09:47:41 antikythera k3s[21881]: time="2022-03-17T09:47:41-07:00" level=info msg="Module iptable_nat was already loaded" Mar 17 09:47:41 antikythera k3s[21881]: time="2022-03-17T09:47:41-07:00" level=debug msg="getConntrackMax: using scaled conntrack-max-per-core" Mar 17 09:47:41 antikythera k3s[21881]: time="2022-03-17T09:47:41-07:00" level=debug msg="Creating the CNI conf in directory /var/lib/rancher/k3s/agent/etc/cni/net.d" Mar 17 09:47:41 antikythera k3s[21881]: time="2022-03-17T09:47:41-07:00" level=debug msg="Creating the flannel configuration for backend vxlan in file /var/lib/rancher/k3s/agent/etc/flannel/net-conf.json" Mar 17 09:47:41 antikythera k3s[21881]: time="2022-03-17T09:47:41-07:00" level=debug msg="The flannel configuration is {\n\t\"Network\": \"10.42.0.0/16\",\n\t\"EnableIPv6\": false,\n\t\"EnableIPv4\": true,\n\t\"IPv6Network\": \"::/0\",\n\t\"Backend\": {\n\t\"Type\": \"vxlan\"\n}\n}\n" Mar 17 09:47:41 antikythera k3s[21881]: time="2022-03-17T09:47:41-07:00" level=debug msg="Searching for nvidia-experimental container runtime at /usr/local/nvidia/toolkit/nvidia-container-runtime-experimental" Mar 17 09:47:41 antikythera k3s[21881]: time="2022-03-17T09:47:41-07:00" level=debug msg="nvidia-experimental container runtime not found at /usr/local/nvidia/toolkit/nvidia-container-runtime-experimental" Mar 17 09:47:41 antikythera k3s[21881]: time="2022-03-17T09:47:41-07:00" level=debug msg="Searching for nvidia-experimental container runtime at /usr/bin/nvidia-container-runtime-experimental" Mar 17 09:47:41 antikythera k3s[21881]: time="2022-03-17T09:47:41-07:00" level=debug msg="nvidia-experimental container runtime not found at /usr/bin/nvidia-container-runtime-experimental" Mar 17 09:47:41 antikythera k3s[21881]: time="2022-03-17T09:47:41-07:00" level=debug msg="Searching for nvidia container runtime at /usr/local/nvidia/toolkit/nvidia-container-runtime" Mar 17 09:47:41 antikythera k3s[21881]: time="2022-03-17T09:47:41-07:00" level=debug msg="nvidia container runtime not found at /usr/local/nvidia/toolkit/nvidia-container-runtime" Mar 17 09:47:41 antikythera k3s[21881]: time="2022-03-17T09:47:41-07:00" level=debug msg="Searching for nvidia container runtime at /usr/bin/nvidia-container-runtime" Mar 17 09:47:41 antikythera k3s[21881]: time="2022-03-17T09:47:41-07:00" level=debug msg="nvidia container runtime not found at /usr/bin/nvidia-container-runtime" Mar 17 09:47:41 antikythera k3s[21881]: time="2022-03-17T09:47:41-07:00" level=info msg="Running containerd -c /var/lib/rancher/k3s/agent/etc/containerd/config.toml -a /run/k3s/containerd/containerd.sock --state /run/k3s/containerd --root /var/lib/rancher/k3s/agent/containerd" Mar 17 09:47:41 antikythera k3s[21926]: time="2022-03-17T09:47:41-07:00" level=warning msg="deprecated version : `1`, please switch to version `2`" Mar 17 09:47:41 antikythera k3s[21926]: time="2022-03-17T09:47:41.320820491-07:00" level=info msg="starting containerd" revision= version=v1.5.10-k3s1 Mar 17 09:47:41 antikythera k3s[21881]: {"level":"warn","ts":"2022-03-17T09:47:41.327-0700","caller":"rafthttp/stream.go:421","msg":"lost TCP streaming connection with remote peer","stream-reader-type":"stream MsgApp v2","local-member-id":"fcfb4c91f4fc885c","remote-peer-id":"87e21aa89889ebe3","error":"unexpected EOF"} Mar 17 09:47:41 antikythera k3s[21881]: {"level":"warn","ts":"2022-03-17T09:47:41.327-0700","caller":"rafthttp/stream.go:421","msg":"lost TCP streaming connection with remote peer","stream-reader-type":"stream Message","local-member-id":"fcfb4c91f4fc885c","remote-peer-id":"87e21aa89889ebe3","error":"unexpected EOF"} Mar 17 09:47:41 antikythera k3s[21881]: {"level":"warn","ts":"2022-03-17T09:47:41.327-0700","caller":"rafthttp/peer_status.go:66","msg":"peer became inactive (message send to peer failed)","peer-id":"87e21aa89889ebe3","error":"failed to read 87e21aa89889ebe3 on stream MsgApp v2 (unexpected EOF)"} Mar 17 09:47:41 antikythera k3s[21926]: time="2022-03-17T09:47:41.372768796-07:00" level=info msg="loading plugin \"io.containerd.content.v1.content\"..." type=io.containerd.content.v1 Mar 17 09:47:41 antikythera k3s[21926]: time="2022-03-17T09:47:41.372886866-07:00" level=info msg="loading plugin \"io.containerd.snapshotter.v1.aufs\"..." type=io.containerd.snapshotter.v1 Mar 17 09:47:41 antikythera k3s[21926]: time="2022-03-17T09:47:41.375732454-07:00" level=info msg="skip loading plugin \"io.containerd.snapshotter.v1.aufs\"..." error="aufs is not supported (modprobe aufs failed: exit status 1 \"modprobe: FATAL: Module aufs not found in directory /lib/modules/5.10.0-11-amd64\\n\"): skip plugin" type=io.containerd.snapshotter.v1 Mar 17 09:47:41 antikythera k3s[21926]: time="2022-03-17T09:47:41.375805229-07:00" level=info msg="loading plugin \"io.containerd.snapshotter.v1.btrfs\"..." type=io.containerd.snapshotter.v1 Mar 17 09:47:41 antikythera k3s[21926]: time="2022-03-17T09:47:41.376039275-07:00" level=info msg="skip loading plugin \"io.containerd.snapshotter.v1.btrfs\"..." error="path /var/lib/rancher/k3s/agent/containerd/io.containerd.snapshotter.v1.btrfs (ext4) must be a btrfs filesystem to be used with the btrfs snapshotter: skip plugin" type=io.containerd.snapshotter.v1 Mar 17 09:47:41 antikythera k3s[21926]: time="2022-03-17T09:47:41.376077154-07:00" level=info msg="loading plugin \"io.containerd.snapshotter.v1.devmapper\"..." type=io.containerd.snapshotter.v1 Mar 17 09:47:41 antikythera k3s[21926]: time="2022-03-17T09:47:41.376125123-07:00" level=warning msg="failed to load plugin io.containerd.snapshotter.v1.devmapper" error="devmapper not configured" Mar 17 09:47:41 antikythera k3s[21926]: time="2022-03-17T09:47:41.376149789-07:00" level=info msg="loading plugin \"io.containerd.snapshotter.v1.native\"..." type=io.containerd.snapshotter.v1 Mar 17 09:47:41 antikythera k3s[21926]: time="2022-03-17T09:47:41.376199339-07:00" level=info msg="loading plugin \"io.containerd.snapshotter.v1.overlayfs\"..." type=io.containerd.snapshotter.v1 Mar 17 09:47:41 antikythera k3s[21926]: time="2022-03-17T09:47:41.376443581-07:00" level=info msg="loading plugin \"io.containerd.snapshotter.v1.fuse-overlayfs\"..." type=io.containerd.snapshotter.v1 Mar 17 09:47:41 antikythera k3s[21926]: time="2022-03-17T09:47:41.376498424-07:00" level=info msg="loading plugin \"io.containerd.snapshotter.v1.stargz\"..." type=io.containerd.snapshotter.v1 Mar 17 09:47:41 antikythera k3s[21926]: time="2022-03-17T09:47:41.377033739-07:00" level=info msg="loading plugin \"io.containerd.snapshotter.v1.zfs\"..." type=io.containerd.snapshotter.v1 Mar 17 09:47:41 antikythera k3s[21926]: time="2022-03-17T09:47:41.377237826-07:00" level=info msg="skip loading plugin \"io.containerd.snapshotter.v1.zfs\"..." error="path /var/lib/rancher/k3s/agent/containerd/io.containerd.snapshotter.v1.zfs must be a zfs filesystem to be used with the zfs snapshotter: skip plugin" type=io.containerd.snapshotter.v1 Mar 17 09:47:41 antikythera k3s[21926]: time="2022-03-17T09:47:41.377274082-07:00" level=info msg="loading plugin \"io.containerd.metadata.v1.bolt\"..." type=io.containerd.metadata.v1 Mar 17 09:47:41 antikythera k3s[21926]: time="2022-03-17T09:47:41.377309893-07:00" level=warning msg="could not use snapshotter devmapper in metadata plugin" error="devmapper not configured" Mar 17 09:47:41 antikythera k3s[21926]: time="2022-03-17T09:47:41.377334717-07:00" level=info msg="metadata content store policy set" policy=shared Mar 17 09:47:41 antikythera k3s[21926]: time="2022-03-17T09:47:41.377628766-07:00" level=info msg="loading plugin \"io.containerd.differ.v1.walking\"..." type=io.containerd.differ.v1 Mar 17 09:47:41 antikythera k3s[21926]: time="2022-03-17T09:47:41.377669648-07:00" level=info msg="loading plugin \"io.containerd.gc.v1.scheduler\"..." type=io.containerd.gc.v1 Mar 17 09:47:41 antikythera k3s[21926]: time="2022-03-17T09:47:41.377738578-07:00" level=info msg="loading plugin \"io.containerd.service.v1.introspection-service\"..." type=io.containerd.service.v1 Mar 17 09:47:41 antikythera k3s[21926]: time="2022-03-17T09:47:41.377802682-07:00" level=info msg="loading plugin \"io.containerd.service.v1.containers-service\"..." type=io.containerd.service.v1 Mar 17 09:47:41 antikythera k3s[21926]: time="2022-03-17T09:47:41.377857033-07:00" level=info msg="loading plugin \"io.containerd.service.v1.content-service\"..." type=io.containerd.service.v1 Mar 17 09:47:41 antikythera k3s[21926]: time="2022-03-17T09:47:41.377876899-07:00" level=info msg="loading plugin \"io.containerd.service.v1.diff-service\"..." type=io.containerd.service.v1 Mar 17 09:47:41 antikythera k3s[21926]: time="2022-03-17T09:47:41.377920412-07:00" level=info msg="loading plugin \"io.containerd.service.v1.images-service\"..." type=io.containerd.service.v1 Mar 17 09:47:41 antikythera k3s[21926]: time="2022-03-17T09:47:41.377956895-07:00" level=info msg="loading plugin \"io.containerd.service.v1.leases-service\"..." type=io.containerd.service.v1 Mar 17 09:47:41 antikythera k3s[21926]: time="2022-03-17T09:47:41.377986342-07:00" level=info msg="loading plugin \"io.containerd.service.v1.namespaces-service\"..." type=io.containerd.service.v1 Mar 17 09:47:41 antikythera k3s[21926]: time="2022-03-17T09:47:41.378016226-07:00" level=info msg="loading plugin \"io.containerd.service.v1.snapshots-service\"..." type=io.containerd.service.v1 Mar 17 09:47:41 antikythera k3s[21926]: time="2022-03-17T09:47:41.378044548-07:00" level=info msg="loading plugin \"io.containerd.runtime.v1.linux\"..." type=io.containerd.runtime.v1 Mar 17 09:47:41 antikythera k3s[21926]: time="2022-03-17T09:47:41.378115011-07:00" level=info msg="loading plugin \"io.containerd.runtime.v2.task\"..." type=io.containerd.runtime.v2 Mar 17 09:47:41 antikythera k3s[21926]: time="2022-03-17T09:47:41.378200456-07:00" level=info msg="loading plugin \"io.containerd.monitor.v1.cgroups\"..." type=io.containerd.monitor.v1 Mar 17 09:47:41 antikythera k3s[21926]: time="2022-03-17T09:47:41.378822910-07:00" level=info msg="loading plugin \"io.containerd.service.v1.tasks-service\"..." type=io.containerd.service.v1 Mar 17 09:47:41 antikythera k3s[21926]: time="2022-03-17T09:47:41.378924763-07:00" level=info msg="loading plugin \"io.containerd.internal.v1.restart\"..." type=io.containerd.internal.v1 Mar 17 09:47:41 antikythera k3s[21926]: time="2022-03-17T09:47:41.379061952-07:00" level=info msg="loading plugin \"io.containerd.grpc.v1.containers\"..." type=io.containerd.grpc.v1 Mar 17 09:47:41 antikythera k3s[21926]: time="2022-03-17T09:47:41.379119644-07:00" level=info msg="loading plugin \"io.containerd.grpc.v1.content\"..." type=io.containerd.grpc.v1 Mar 17 09:47:41 antikythera k3s[21926]: time="2022-03-17T09:47:41.379148367-07:00" level=info msg="loading plugin \"io.containerd.grpc.v1.diff\"..." type=io.containerd.grpc.v1 Mar 17 09:47:41 antikythera k3s[21926]: time="2022-03-17T09:47:41.379194934-07:00" level=info msg="loading plugin \"io.containerd.grpc.v1.events\"..." type=io.containerd.grpc.v1 Mar 17 09:47:41 antikythera k3s[21926]: time="2022-03-17T09:47:41.379241805-07:00" level=info msg="loading plugin \"io.containerd.grpc.v1.healthcheck\"..." type=io.containerd.grpc.v1 Mar 17 09:47:41 antikythera k3s[21926]: time="2022-03-17T09:47:41.379268272-07:00" level=info msg="loading plugin \"io.containerd.grpc.v1.images\"..." type=io.containerd.grpc.v1 Mar 17 09:47:41 antikythera k3s[21926]: time="2022-03-17T09:47:41.379299072-07:00" level=info msg="loading plugin \"io.containerd.grpc.v1.leases\"..." type=io.containerd.grpc.v1 Mar 17 09:47:41 antikythera k3s[21926]: time="2022-03-17T09:47:41.379324969-07:00" level=info msg="loading plugin \"io.containerd.grpc.v1.namespaces\"..." type=io.containerd.grpc.v1 Mar 17 09:47:41 antikythera k3s[21926]: time="2022-03-17T09:47:41.379351821-07:00" level=info msg="loading plugin \"io.containerd.internal.v1.opt\"..." type=io.containerd.internal.v1 Mar 17 09:47:41 antikythera k3s[21926]: time="2022-03-17T09:47:41.379456185-07:00" level=info msg="loading plugin \"io.containerd.grpc.v1.snapshots\"..." type=io.containerd.grpc.v1 Mar 17 09:47:41 antikythera k3s[21926]: time="2022-03-17T09:47:41.379493036-07:00" level=info msg="loading plugin \"io.containerd.grpc.v1.tasks\"..." type=io.containerd.grpc.v1 Mar 17 09:47:41 antikythera k3s[21926]: time="2022-03-17T09:47:41.380106355-07:00" level=info msg="loading plugin \"io.containerd.grpc.v1.version\"..." type=io.containerd.grpc.v1 Mar 17 09:47:41 antikythera k3s[21926]: time="2022-03-17T09:47:41.380195918-07:00" level=info msg="loading plugin \"io.containerd.grpc.v1.cri\"..." type=io.containerd.grpc.v1 Mar 17 09:47:41 antikythera k3s[21926]: time="2022-03-17T09:47:41.380821465-07:00" level=info msg="Start cri plugin with config {PluginConfig:{ContainerdConfig:{Snapshotter:overlayfs DefaultRuntimeName:runc DefaultRuntime:{Type: Engine: PodAnnotations:[] ContainerAnnotations:[] Root: Options:map[] PrivilegedWithoutHostDevices:false BaseRuntimeSpec:} UntrustedWorkloadRuntime:{Type: Engine: PodAnnotations:[] ContainerAnnotations:[] Root: Options:map[] PrivilegedWithoutHostDevices:false BaseRuntimeSpec:} Runtimes:map[runc:{Type:io.containerd.runc.v2 Engine: PodAnnotations:[] ContainerAnnotations:[] Root: Options:map[] PrivilegedWithoutHostDevices:false BaseRuntimeSpec:}] NoPivot:false DisableSnapshotAnnotations:true DiscardUnpackedLayers:false} CniConfig:{NetworkPluginBinDir:/var/lib/rancher/k3s/data/aae84690209148f4c80a72b2e378ddd57946480899935afb287f056342af375f/bin NetworkPluginConfDir:/var/lib/rancher/k3s/agent/etc/cni/net.d NetworkPluginMaxConfNum:1 NetworkPluginConfTemplate:} Registry:{ConfigPath: Mirrors:map[] Configs:map[] Auths:map[] Headers:map[]} ImageDecryption:{KeyModel:node} DisableTCPService:true StreamServerAddress:127.0.0.1 StreamServerPort:10010 StreamIdleTimeout:4h0m0s EnableSelinux:false SelinuxCategoryRange:1024 SandboxImage:rancher/mirrored-pause:3.6 StatsCollectPeriod:10 SystemdCgroup:false EnableTLSStreaming:false X509KeyPairStreaming:{TLSCertFile: TLSKeyFile:} MaxContainerLogLineSize:16384 DisableCgroup:false DisableApparmor:false RestrictOOMScoreAdj:false MaxConcurrentDownloads:3 DisableProcMount:false UnsetSeccompProfile: TolerateMissingHugetlbController:true DisableHugetlbController:true IgnoreImageDefinedVolumes:false NetNSMountsUnderStateDir:false} ContainerdRootDir:/var/lib/rancher/k3s/agent/containerd ContainerdEndpoint:/run/k3s/containerd/containerd.sock RootDir:/var/lib/rancher/k3s/agent/containerd/io.containerd.grpc.v1.cri StateDir:/run/k3s/containerd/io.containerd.grpc.v1.cri}" Mar 17 09:47:41 antikythera k3s[21926]: time="2022-03-17T09:47:41.380917991-07:00" level=info msg="Connect containerd service" Mar 17 09:47:41 antikythera k3s[21926]: time="2022-03-17T09:47:41.381001367-07:00" level=info msg="Get image filesystem path \"/var/lib/rancher/k3s/agent/containerd/io.containerd.snapshotter.v1.overlayfs\"" Mar 17 09:47:41 antikythera k3s[21926]: time="2022-03-17T09:47:41.381709608-07:00" level=info msg="loading plugin \"io.containerd.grpc.v1.introspection\"..." type=io.containerd.grpc.v1 Mar 17 09:47:41 antikythera k3s[21926]: time="2022-03-17T09:47:41.381831088-07:00" level=info msg="Start subscribing containerd event" Mar 17 09:47:41 antikythera k3s[21926]: time="2022-03-17T09:47:41.381917131-07:00" level=info msg="Start recovering state" Mar 17 09:47:41 antikythera k3s[21926]: time="2022-03-17T09:47:41.382127110-07:00" level=info msg=serving... address=/run/k3s/containerd/containerd.sock.ttrpc Mar 17 09:47:41 antikythera k3s[21926]: time="2022-03-17T09:47:41.382231836-07:00" level=info msg=serving... address=/run/k3s/containerd/containerd.sock Mar 17 09:47:41 antikythera k3s[21926]: time="2022-03-17T09:47:41.382275636-07:00" level=info msg="containerd successfully booted in 0.062140s" Mar 17 09:47:41 antikythera k3s[21881]: {"level":"warn","ts":"2022-03-17T09:47:41.390-0700","caller":"etcdserver/util.go:123","msg":"failed to apply request","took":"27.482µs","request":"header: txn: success:> failure:<>>","response":"","error":"etcdserver: no space"} Mar 17 09:47:41 antikythera k3s[21881]: {"level":"warn","ts":"2022-03-17T09:47:41.390-0700","caller":"etcdserver/util.go:123","msg":"failed to apply request","took":"1.748µs","request":"header: txn: success:> failure:<>>","response":"","error":"etcdserver: no space"} Mar 17 09:47:41 antikythera k3s[21881]: {"level":"warn","ts":"2022-03-17T09:47:41.390-0700","caller":"etcdserver/util.go:123","msg":"failed to apply request","took":"1.938µs","request":"header: txn: success:> failure:<>>","response":"","error":"etcdserver: no space"} Mar 17 09:47:41 antikythera k3s[21881]: {"level":"warn","ts":"2022-03-17T09:47:41.390-0700","caller":"etcdserver/util.go:123","msg":"failed to apply request","took":"3.789µs","request":"header: txn: success:> failure:<>>","response":"","error":"etcdserver: no space"} Mar 17 09:47:41 antikythera k3s[21881]: {"level":"warn","ts":"2022-03-17T09:47:41.391-0700","caller":"etcdserver/util.go:123","msg":"failed to apply request","took":"3.084µs","request":"header: txn: success:> failure:<>>","response":"","error":"etcdserver: no space"} Mar 17 09:47:41 antikythera k3s[21881]: {"level":"warn","ts":"2022-03-17T09:47:41.391-0700","caller":"etcdserver/util.go:123","msg":"failed to apply request","took":"3.335µs","request":"header: txn: success:> failure:<>>","response":"","error":"etcdserver: no space"} Mar 17 09:47:41 antikythera k3s[21881]: {"level":"warn","ts":"2022-03-17T09:47:41.391-0700","caller":"etcdserver/util.go:123","msg":"failed to apply request","took":"2.894µs","request":"header: txn: success:> failure:<>>","response":"","error":"etcdserver: no space"} Mar 17 09:47:41 antikythera k3s[21881]: {"level":"warn","ts":"2022-03-17T09:47:41.391-0700","caller":"etcdserver/util.go:123","msg":"failed to apply request","took":"1.514µs","request":"header: txn: success:> failure:<>>","response":"","error":"etcdserver: no space"} Mar 17 09:47:41 antikythera k3s[21881]: {"level":"warn","ts":"2022-03-17T09:47:41.391-0700","caller":"etcdserver/util.go:123","msg":"failed to apply request","took":"1.692µs","request":"header: txn: success:> failure:<>>","response":"","error":"etcdserver: no space"} Mar 17 09:47:41 antikythera k3s[21881]: {"level":"warn","ts":"2022-03-17T09:47:41.391-0700","caller":"etcdserver/util.go:123","msg":"failed to apply request","took":"1.621µs","request":"header: txn: success:> failure:<>>","response":"","error":"etcdserver: no space"} Mar 17 09:47:41 antikythera k3s[21881]: {"level":"warn","ts":"2022-03-17T09:47:41.392-0700","caller":"etcdserver/util.go:123","msg":"failed to apply request","took":"3.663µs","request":"header: txn: success:> failure:<>>","response":"","error":"etcdserver: no space"} Mar 17 09:47:41 antikythera k3s[21881]: {"level":"warn","ts":"2022-03-17T09:47:41.392-0700","caller":"etcdserver/util.go:123","msg":"failed to apply request","took":"2.97µs","request":"header: txn: success:> failure:<>>","response":"","error":"etcdserver: no space"} Mar 17 09:47:41 antikythera k3s[21881]: {"level":"warn","ts":"2022-03-17T09:47:41.392-0700","caller":"etcdserver/util.go:123","msg":"failed to apply request","took":"2.693µs","request":"header: txn: success:> failure:<>>","response":"","error":"etcdserver: no space"} Mar 17 09:47:41 antikythera k3s[21881]: {"level":"warn","ts":"2022-03-17T09:47:41.392-0700","caller":"etcdserver/util.go:123","msg":"failed to apply request","took":"3.374µs","request":"header: txn: success:> failure:<>>","response":"","error":"etcdserver: no space"} Mar 17 09:47:41 antikythera k3s[21881]: {"level":"warn","ts":"2022-03-17T09:47:41.392-0700","caller":"etcdserver/util.go:123","msg":"failed to apply request","took":"2.719µs","request":"header: txn: success:> failure:<>>","response":"","error":"etcdserver: no space"} Mar 17 09:47:41 antikythera k3s[21881]: {"level":"warn","ts":"2022-03-17T09:47:41.393-0700","caller":"etcdserver/util.go:123","msg":"failed to apply request","took":"3.942µs","request":"header: txn: success:> failure:<>>","response":"","error":"etcdserver: no space"} Mar 17 09:47:41 antikythera k3s[21881]: {"level":"warn","ts":"2022-03-17T09:47:41.393-0700","caller":"etcdserver/util.go:123","msg":"failed to apply request","took":"1.403µs","request":"header: txn: success:> failure:<>>","response":"","error":"etcdserver: no space"} Mar 17 09:47:41 antikythera k3s[21881]: {"level":"warn","ts":"2022-03-17T09:47:41.393-0700","caller":"etcdserver/util.go:123","msg":"failed to apply request","took":"1.388µs","request":"header: txn: success:> failure:<>>","response":"","error":"etcdserver: no space"} Mar 17 09:47:41 antikythera k3s[21881]: {"level":"warn","ts":"2022-03-17T09:47:41.393-0700","caller":"etcdserver/util.go:123","msg":"failed to apply request","took":"1.348µs","request":"header: txn: success:> failure:<>>","response":"","error":"etcdserver: no space"} Mar 17 09:47:41 antikythera k3s[21881]: {"level":"warn","ts":"2022-03-17T09:47:41.393-0700","caller":"etcdserver/util.go:123","msg":"failed to apply request","took":"4.912µs","request":"header: txn: success:> failure:<>>","response":"","error":"etcdserver: no space"} Mar 17 09:47:41 antikythera k3s[21881]: {"level":"warn","ts":"2022-03-17T09:47:41.393-0700","caller":"etcdserver/util.go:123","msg":"failed to apply request","took":"14.33µs","request":"header: lease_grant:","response":"","error":"etcdserver: no space"} Mar 17 09:47:41 antikythera k3s[21881]: {"level":"warn","ts":"2022-03-17T09:47:41.393-0700","caller":"etcdserver/util.go:123","msg":"failed to apply request","took":"3.987µs","request":"header: txn: success:> failure:<>>","response":"","error":"etcdserver: no space"} Mar 17 09:47:41 antikythera k3s[21881]: {"level":"warn","ts":"2022-03-17T09:47:41.393-0700","caller":"etcdserver/util.go:123","msg":"failed to apply request","took":"2.304µs","request":"header: txn: success:> failure:<>>","response":"","error":"etcdserver: no space"} Mar 17 09:47:41 antikythera k3s[21881]: {"level":"warn","ts":"2022-03-17T09:47:41.393-0700","caller":"etcdserver/util.go:123","msg":"failed to apply request","took":"3.843µs","request":"header: txn: success:> failure:<>>","response":"","error":"etcdserver: no space"} Mar 17 09:47:41 antikythera k3s[21881]: {"level":"warn","ts":"2022-03-17T09:47:41.394-0700","caller":"etcdserver/util.go:123","msg":"failed to apply request","took":"3.926µs","request":"header: txn: success:> failure:<>>","response":"","error":"etcdserver: no space"} Mar 17 09:47:41 antikythera k3s[21881]: {"level":"warn","ts":"2022-03-17T09:47:41.394-0700","caller":"etcdserver/util.go:123","msg":"failed to apply request","took":"3.79µs","request":"header: txn: success:> failure:<>>","response":"","error":"etcdserver: no space"} Mar 17 09:47:41 antikythera k3s[21881]: {"level":"warn","ts":"2022-03-17T09:47:41.394-0700","caller":"etcdserver/util.go:123","msg":"failed to apply request","took":"3.846µs","request":"header: txn: success:> failure:<>>","response":"","error":"etcdserver: no space"} Mar 17 09:47:41 antikythera k3s[21881]: {"level":"warn","ts":"2022-03-17T09:47:41.394-0700","caller":"etcdserver/util.go:123","msg":"failed to apply request","took":"3.754µs","request":"header: txn: success:> failure:<>>","response":"","error":"etcdserver: no space"} Mar 17 09:47:41 antikythera k3s[21881]: {"level":"warn","ts":"2022-03-17T09:47:41.394-0700","caller":"etcdserver/util.go:123","msg":"failed to apply request","took":"3.828µs","request":"header: txn: success:> failure:<>>","response":"","error":"etcdserver: no space"} Mar 17 09:47:41 antikythera k3s[21881]: {"level":"warn","ts":"2022-03-17T09:47:41.394-0700","caller":"etcdserver/util.go:123","msg":"failed to apply request","took":"1.472µs","request":"header: txn: success:> failure:<>>","response":"","error":"etcdserver: no space"} Mar 17 09:47:41 antikythera k3s[21881]: {"level":"warn","ts":"2022-03-17T09:47:41.394-0700","caller":"etcdserver/util.go:123","msg":"failed to apply request","took":"1.733µs","request":"header: txn: success:> failure:<>>","response":"","error":"etcdserver: no space"} Mar 17 09:47:41 antikythera k3s[21881]: {"level":"info","ts":"2022-03-17T09:47:41.394-0700","caller":"etcdserver/server.go:2029","msg":"published local member to cluster through raft","local-member-id":"fcfb4c91f4fc885c","local-member-attributes":"{Name:antikythera-0948c62a ClientURLs:[https://192.168.1.33:2379]}","request-path":"/0/members/fcfb4c91f4fc885c/attributes","cluster-id":"d1c8afd71ab75419","publish-timeout":"15s"} Mar 17 09:47:41 antikythera k3s[21881]: {"level":"info","ts":"2022-03-17T09:47:41.394-0700","caller":"embed/serve.go:98","msg":"ready to serve client requests"} Mar 17 09:47:41 antikythera k3s[21881]: {"level":"info","ts":"2022-03-17T09:47:41.394-0700","caller":"embed/serve.go:98","msg":"ready to serve client requests"} Mar 17 09:47:41 antikythera k3s[21881]: {"level":"info","ts":"2022-03-17T09:47:41.396-0700","caller":"embed/serve.go:188","msg":"serving client traffic securely","address":"127.0.0.1:2379"} Mar 17 09:47:41 antikythera k3s[21881]: {"level":"info","ts":"2022-03-17T09:47:41.396-0700","caller":"embed/serve.go:188","msg":"serving client traffic securely","address":"192.168.1.33:2379"} Mar 17 09:47:42 antikythera k3s[21881]: time="2022-03-17T09:47:42-07:00" level=info msg="Waiting for containerd startup: rpc error: code = Unknown desc = server is not initialized yet" Mar 17 09:47:42 antikythera k3s[21926]: time="2022-03-17T09:47:42.513074534-07:00" level=info msg="Start event monitor" Mar 17 09:47:42 antikythera k3s[21926]: time="2022-03-17T09:47:42.513165636-07:00" level=info msg="Start snapshots syncer" Mar 17 09:47:42 antikythera k3s[21926]: time="2022-03-17T09:47:42.513201997-07:00" level=info msg="Start cni network conf syncer" Mar 17 09:47:42 antikythera k3s[21926]: time="2022-03-17T09:47:42.513225039-07:00" level=info msg="Start streaming server" Mar 17 09:47:43 antikythera k3s[21881]: time="2022-03-17T09:47:43-07:00" level=info msg="Containerd is now running" Mar 17 09:47:43 antikythera k3s[21881]: time="2022-03-17T09:47:43-07:00" level=info msg="Connecting to proxy" url="wss://127.0.0.1:6443/v1-k3s/connect" Mar 17 09:47:43 antikythera k3s[21881]: time="2022-03-17T09:47:43-07:00" level=error msg="Failed to connect to proxy" error="websocket: bad handshake" Mar 17 09:47:43 antikythera k3s[21881]: time="2022-03-17T09:47:43-07:00" level=error msg="Remotedialer proxy error" error="websocket: bad handshake" Mar 17 09:47:45 antikythera k3s[21881]: {"level":"warn","ts":"2022-03-17T09:47:45.961-0700","caller":"rafthttp/probing_status.go:68","msg":"prober detected unhealthy status","round-tripper-name":"ROUND_TRIPPER_SNAPSHOT","remote-peer-id":"3fdd1f92a3b0a374","rtt":"0s"} Mar 17 09:47:45 antikythera k3s[21881]: {"level":"warn","ts":"2022-03-17T09:47:45.961-0700","caller":"rafthttp/probing_status.go:68","msg":"prober detected unhealthy status","round-tripper-name":"ROUND_TRIPPER_RAFT_MESSAGE","remote-peer-id":"3fdd1f92a3b0a374","rtt":"0s"} Mar 17 09:47:45 antikythera k3s[21881]: {"level":"warn","ts":"2022-03-17T09:47:45.961-0700","caller":"rafthttp/probing_status.go:68","msg":"prober detected unhealthy status","round-tripper-name":"ROUND_TRIPPER_RAFT_MESSAGE","remote-peer-id":"87e21aa89889ebe3","rtt":"0s","error":"dial tcp 192.168.1.31:2380: connect: connection refused"} Mar 17 09:47:45 antikythera k3s[21881]: {"level":"warn","ts":"2022-03-17T09:47:45.961-0700","caller":"rafthttp/probing_status.go:68","msg":"prober detected unhealthy status","round-tripper-name":"ROUND_TRIPPER_SNAPSHOT","remote-peer-id":"87e21aa89889ebe3","rtt":"0s","error":"dial tcp 192.168.1.31:2380: connect: connection refused"} Mar 17 09:47:45 antikythera k3s[21881]: {"level":"warn","ts":"2022-03-17T09:47:45.963-0700","caller":"rafthttp/stream.go:194","msg":"lost TCP streaming connection with remote peer","stream-writer-type":"stream Message","local-member-id":"fcfb4c91f4fc885c","remote-peer-id":"87e21aa89889ebe3"} Mar 17 09:47:46 antikythera k3s[21881]: time="2022-03-17T09:47:46-07:00" level=info msg="Cluster-Http-Server 2022/03/17 09:47:46 http: TLS handshake error from 192.168.1.31:39542: remote error: tls: bad certificate" Mar 17 09:47:47 antikythera k3s[21881]: {"level":"info","ts":"2022-03-17T09:47:47.021-0700","caller":"rafthttp/peer_status.go:53","msg":"peer became active","peer-id":"87e21aa89889ebe3"} Mar 17 09:47:47 antikythera k3s[21881]: {"level":"info","ts":"2022-03-17T09:47:47.021-0700","caller":"rafthttp/stream.go:412","msg":"established TCP streaming connection with remote peer","stream-reader-type":"stream Message","local-member-id":"fcfb4c91f4fc885c","remote-peer-id":"87e21aa89889ebe3"} Mar 17 09:47:47 antikythera k3s[21881]: {"level":"info","ts":"2022-03-17T09:47:47.021-0700","caller":"rafthttp/stream.go:412","msg":"established TCP streaming connection with remote peer","stream-reader-type":"stream MsgApp v2","local-member-id":"fcfb4c91f4fc885c","remote-peer-id":"87e21aa89889ebe3"} Mar 17 09:47:47 antikythera k3s[21881]: {"level":"info","ts":"2022-03-17T09:47:47.025-0700","caller":"rafthttp/stream.go:249","msg":"set message encoder","from":"fcfb4c91f4fc885c","to":"87e21aa89889ebe3","stream-type":"stream Message"} Mar 17 09:47:47 antikythera k3s[21881]: {"level":"info","ts":"2022-03-17T09:47:47.025-0700","caller":"rafthttp/stream.go:274","msg":"established TCP streaming connection with remote peer","stream-writer-type":"stream Message","local-member-id":"fcfb4c91f4fc885c","remote-peer-id":"87e21aa89889ebe3"} Mar 17 09:47:47 antikythera k3s[21881]: {"level":"info","ts":"2022-03-17T09:47:47.027-0700","caller":"rafthttp/stream.go:249","msg":"set message encoder","from":"fcfb4c91f4fc885c","to":"87e21aa89889ebe3","stream-type":"stream MsgApp v2"} Mar 17 09:47:47 antikythera k3s[21881]: {"level":"warn","ts":"2022-03-17T09:47:47.027-0700","caller":"rafthttp/stream.go:265","msg":"closed TCP streaming connection with remote peer","stream-writer-type":"stream MsgApp v2","local-member-id":"fcfb4c91f4fc885c","remote-peer-id":"87e21aa89889ebe3"} Mar 17 09:47:47 antikythera k3s[21881]: {"level":"info","ts":"2022-03-17T09:47:47.027-0700","caller":"rafthttp/stream.go:274","msg":"established TCP streaming connection with remote peer","stream-writer-type":"stream MsgApp v2","local-member-id":"fcfb4c91f4fc885c","remote-peer-id":"87e21aa89889ebe3"} Mar 17 09:47:47 antikythera k3s[21881]: {"level":"info","ts":"2022-03-17T09:47:47.840-0700","logger":"raft","caller":"etcdserver/zap_raft.go:77","msg":"fcfb4c91f4fc885c is starting a new election at term 68404"} Mar 17 09:47:47 antikythera k3s[21881]: {"level":"info","ts":"2022-03-17T09:47:47.840-0700","logger":"raft","caller":"etcdserver/zap_raft.go:77","msg":"fcfb4c91f4fc885c became pre-candidate at term 68404"} Mar 17 09:47:47 antikythera k3s[21881]: {"level":"info","ts":"2022-03-17T09:47:47.840-0700","logger":"raft","caller":"etcdserver/zap_raft.go:77","msg":"fcfb4c91f4fc885c received MsgPreVoteResp from fcfb4c91f4fc885c at term 68404"} Mar 17 09:47:47 antikythera k3s[21881]: {"level":"info","ts":"2022-03-17T09:47:47.841-0700","logger":"raft","caller":"etcdserver/zap_raft.go:77","msg":"fcfb4c91f4fc885c [logterm: 68404, index: 457073647] sent MsgPreVote request to 3fdd1f92a3b0a374 at term 68404"} Mar 17 09:47:47 antikythera k3s[21881]: {"level":"info","ts":"2022-03-17T09:47:47.841-0700","logger":"raft","caller":"etcdserver/zap_raft.go:77","msg":"fcfb4c91f4fc885c [logterm: 68404, index: 457073647] sent MsgPreVote request to 87e21aa89889ebe3 at term 68404"} Mar 17 09:47:47 antikythera k3s[21881]: {"level":"info","ts":"2022-03-17T09:47:47.841-0700","logger":"raft","caller":"etcdserver/zap_raft.go:77","msg":"raft.node: fcfb4c91f4fc885c lost leader 87e21aa89889ebe3 at term 68404"} Mar 17 09:47:47 antikythera k3s[21881]: {"level":"info","ts":"2022-03-17T09:47:47.841-0700","logger":"raft","caller":"etcdserver/zap_raft.go:77","msg":"fcfb4c91f4fc885c received MsgPreVoteResp from 87e21aa89889ebe3 at term 68404"} Mar 17 09:47:47 antikythera k3s[21881]: {"level":"info","ts":"2022-03-17T09:47:47.841-0700","logger":"raft","caller":"etcdserver/zap_raft.go:77","msg":"fcfb4c91f4fc885c has received 2 MsgPreVoteResp votes and 0 vote rejections"} Mar 17 09:47:47 antikythera k3s[21881]: {"level":"info","ts":"2022-03-17T09:47:47.841-0700","logger":"raft","caller":"etcdserver/zap_raft.go:77","msg":"fcfb4c91f4fc885c became candidate at term 68405"} Mar 17 09:47:47 antikythera k3s[21881]: {"level":"info","ts":"2022-03-17T09:47:47.841-0700","logger":"raft","caller":"etcdserver/zap_raft.go:77","msg":"fcfb4c91f4fc885c received MsgVoteResp from fcfb4c91f4fc885c at term 68405"} Mar 17 09:47:47 antikythera k3s[21881]: {"level":"info","ts":"2022-03-17T09:47:47.842-0700","logger":"raft","caller":"etcdserver/zap_raft.go:77","msg":"fcfb4c91f4fc885c [logterm: 68404, index: 457073647] sent MsgVote request to 3fdd1f92a3b0a374 at term 68405"} Mar 17 09:47:47 antikythera k3s[21881]: {"level":"info","ts":"2022-03-17T09:47:47.842-0700","logger":"raft","caller":"etcdserver/zap_raft.go:77","msg":"fcfb4c91f4fc885c [logterm: 68404, index: 457073647] sent MsgVote request to 87e21aa89889ebe3 at term 68405"} Mar 17 09:47:47 antikythera k3s[21881]: {"level":"info","ts":"2022-03-17T09:47:47.860-0700","logger":"raft","caller":"etcdserver/zap_raft.go:77","msg":"fcfb4c91f4fc885c received MsgVoteResp from 87e21aa89889ebe3 at term 68405"} Mar 17 09:47:47 antikythera k3s[21881]: {"level":"info","ts":"2022-03-17T09:47:47.860-0700","logger":"raft","caller":"etcdserver/zap_raft.go:77","msg":"fcfb4c91f4fc885c has received 2 MsgVoteResp votes and 0 vote rejections"} Mar 17 09:47:47 antikythera k3s[21881]: {"level":"info","ts":"2022-03-17T09:47:47.860-0700","logger":"raft","caller":"etcdserver/zap_raft.go:77","msg":"fcfb4c91f4fc885c became leader at term 68405"} Mar 17 09:47:47 antikythera k3s[21881]: {"level":"info","ts":"2022-03-17T09:47:47.861-0700","logger":"raft","caller":"etcdserver/zap_raft.go:77","msg":"raft.node: fcfb4c91f4fc885c elected leader fcfb4c91f4fc885c at term 68405"} Mar 17 09:47:47 antikythera k3s[21881]: {"level":"warn","ts":"2022-03-17T09:47:47.913-0700","caller":"etcdserver/util.go:123","msg":"failed to apply request","took":"12.249µs","request":"header: txn: success:> failure:<>>","response":"","error":"etcdserver: no space"} Mar 17 09:47:47 antikythera k3s[21881]: {"level":"warn","ts":"2022-03-17T09:47:47.924-0700","caller":"rafthttp/stream.go:421","msg":"lost TCP streaming connection with remote peer","stream-reader-type":"stream Message","local-member-id":"fcfb4c91f4fc885c","remote-peer-id":"87e21aa89889ebe3","error":"unexpected EOF"} Mar 17 09:47:47 antikythera k3s[21881]: {"level":"warn","ts":"2022-03-17T09:47:47.924-0700","caller":"rafthttp/peer_status.go:66","msg":"peer became inactive (message send to peer failed)","peer-id":"87e21aa89889ebe3","error":"failed to read 87e21aa89889ebe3 on stream Message (unexpected EOF)"} Mar 17 09:47:47 antikythera k3s[21881]: {"level":"warn","ts":"2022-03-17T09:47:47.924-0700","caller":"rafthttp/stream.go:421","msg":"lost TCP streaming connection with remote peer","stream-reader-type":"stream MsgApp v2","local-member-id":"fcfb4c91f4fc885c","remote-peer-id":"87e21aa89889ebe3","error":"unexpected EOF"} Mar 17 09:47:48 antikythera k3s[21881]: time="2022-03-17T09:47:48-07:00" level=info msg="Connecting to proxy" url="wss://127.0.0.1:6443/v1-k3s/connect" Mar 17 09:47:48 antikythera k3s[21881]: time="2022-03-17T09:47:48-07:00" level=error msg="Failed to connect to proxy" error="websocket: bad handshake" Mar 17 09:47:48 antikythera k3s[21881]: time="2022-03-17T09:47:48-07:00" level=error msg="Remotedialer proxy error" error="websocket: bad handshake" Mar 17 09:47:49 antikythera k3s[21881]: {"level":"warn","ts":"2022-03-17T09:47:49.295-0700","caller":"rafthttp/stream.go:194","msg":"lost TCP streaming connection with remote peer","stream-writer-type":"stream Message","local-member-id":"fcfb4c91f4fc885c","remote-peer-id":"87e21aa89889ebe3"} Mar 17 09:47:50 antikythera k3s[21881]: {"level":"warn","ts":"2022-03-17T09:47:50.166-0700","caller":"etcdserver/cluster_util.go:288","msg":"failed to reach the peer URL","address":"https://192.168.1.62:2380/version","remote-member-id":"3fdd1f92a3b0a374","error":"Get \"https://192.168.1.62:2380/version\": dial tcp 192.168.1.62:2380: connect: no route to host"} Mar 17 09:47:50 antikythera k3s[21881]: {"level":"warn","ts":"2022-03-17T09:47:50.166-0700","caller":"etcdserver/cluster_util.go:155","msg":"failed to get version","remote-member-id":"3fdd1f92a3b0a374","error":"Get \"https://192.168.1.62:2380/version\": dial tcp 192.168.1.62:2380: connect: no route to host"} Mar 17 09:47:50 antikythera k3s[21881]: {"level":"warn","ts":"2022-03-17T09:47:50.167-0700","caller":"etcdserver/cluster_util.go:288","msg":"failed to reach the peer URL","address":"https://192.168.1.31:2380/version","remote-member-id":"87e21aa89889ebe3","error":"Get \"https://192.168.1.31:2380/version\": dial tcp 192.168.1.31:2380: connect: connection refused"} Mar 17 09:47:50 antikythera k3s[21881]: {"level":"warn","ts":"2022-03-17T09:47:50.167-0700","caller":"etcdserver/cluster_util.go:155","msg":"failed to get version","remote-member-id":"87e21aa89889ebe3","error":"Get \"https://192.168.1.31:2380/version\": dial tcp 192.168.1.31:2380: connect: connection refused"} Mar 17 09:47:50 antikythera k3s[21881]: {"level":"warn","ts":"2022-03-17T09:47:50.961-0700","caller":"rafthttp/probing_status.go:68","msg":"prober detected unhealthy status","round-tripper-name":"ROUND_TRIPPER_SNAPSHOT","remote-peer-id":"3fdd1f92a3b0a374","rtt":"0s","error":"dial tcp 192.168.1.62:2380: connect: no route to host"} Mar 17 09:47:50 antikythera k3s[21881]: {"level":"warn","ts":"2022-03-17T09:47:50.961-0700","caller":"rafthttp/probing_status.go:68","msg":"prober detected unhealthy status","round-tripper-name":"ROUND_TRIPPER_RAFT_MESSAGE","remote-peer-id":"3fdd1f92a3b0a374","rtt":"0s","error":"dial tcp 192.168.1.62:2380: connect: no route to host"} Mar 17 09:47:50 antikythera k3s[21881]: {"level":"warn","ts":"2022-03-17T09:47:50.961-0700","caller":"rafthttp/probing_status.go:68","msg":"prober detected unhealthy status","round-tripper-name":"ROUND_TRIPPER_RAFT_MESSAGE","remote-peer-id":"87e21aa89889ebe3","rtt":"0s","error":"dial tcp 192.168.1.31:2380: connect: connection refused"} Mar 17 09:47:50 antikythera k3s[21881]: {"level":"warn","ts":"2022-03-17T09:47:50.962-0700","caller":"rafthttp/probing_status.go:68","msg":"prober detected unhealthy status","round-tripper-name":"ROUND_TRIPPER_SNAPSHOT","remote-peer-id":"87e21aa89889ebe3","rtt":"0s","error":"dial tcp 192.168.1.31:2380: connect: connection refused"} Mar 17 09:47:50 antikythera k3s[21881]: {"level":"warn","ts":"2022-03-17T09:47:50.971-0700","logger":"etcd-client","caller":"v3@v3.5.1-k3s1/retry_interceptor.go:62","msg":"retrying of unary invoker failed","target":"etcd-endpoints://0xc001200000/127.0.0.1:2379","attempt":0,"error":"rpc error: code = DeadlineExceeded desc = context deadline exceeded"} Mar 17 09:47:50 antikythera k3s[21881]: time="2022-03-17T09:47:50-07:00" level=info msg="Failed to test data store connection: failed to report and disarm etcd alarms: etcd alarm list failed: context deadline exceeded" Mar 17 09:47:50 antikythera k3s[21881]: {"level":"warn","ts":"2022-03-17T09:47:50.971-0700","caller":"v3rpc/interceptor.go:197","msg":"request stats","start time":"2022-03-17T09:47:41.403-0700","time spent":"9.568051671s","remote":"127.0.0.1:49778","response type":"/etcdserverpb.Maintenance/Alarm","request count":-1,"request size":-1,"response count":-1,"response size":-1,"request content":""} Mar 17 09:47:53 antikythera k3s[21881]: time="2022-03-17T09:47:53-07:00" level=info msg="Cluster-Http-Server 2022/03/17 09:47:53 http: TLS handshake error from 192.168.1.31:39622: remote error: tls: bad certificate" Mar 17 09:47:53 antikythera k3s[21881]: time="2022-03-17T09:47:53-07:00" level=info msg="Connecting to proxy" url="wss://127.0.0.1:6443/v1-k3s/connect" Mar 17 09:47:53 antikythera k3s[21881]: time="2022-03-17T09:47:53-07:00" level=error msg="Failed to connect to proxy" error="websocket: bad handshake" Mar 17 09:47:53 antikythera k3s[21881]: time="2022-03-17T09:47:53-07:00" level=error msg="Remotedialer proxy error" error="websocket: bad handshake" Mar 17 09:47:53 antikythera k3s[21881]: {"level":"info","ts":"2022-03-17T09:47:53.761-0700","caller":"rafthttp/peer_status.go:53","msg":"peer became active","peer-id":"87e21aa89889ebe3"} Mar 17 09:47:53 antikythera k3s[21881]: {"level":"info","ts":"2022-03-17T09:47:53.761-0700","caller":"rafthttp/stream.go:412","msg":"established TCP streaming connection with remote peer","stream-reader-type":"stream Message","local-member-id":"fcfb4c91f4fc885c","remote-peer-id":"87e21aa89889ebe3"} Mar 17 09:47:53 antikythera k3s[21881]: {"level":"info","ts":"2022-03-17T09:47:53.761-0700","caller":"rafthttp/stream.go:412","msg":"established TCP streaming connection with remote peer","stream-reader-type":"stream MsgApp v2","local-member-id":"fcfb4c91f4fc885c","remote-peer-id":"87e21aa89889ebe3"} Mar 17 09:47:53 antikythera k3s[21881]: {"level":"warn","ts":"2022-03-17T09:47:53.763-0700","caller":"rafthttp/peer_status.go:66","msg":"peer became inactive (message send to peer failed)","peer-id":"87e21aa89889ebe3","error":"failed to write 87e21aa89889ebe3 on stream MsgApp v2 (write tcp 192.168.1.33:2380->192.168.1.31:59572: write: broken pipe)"} Mar 17 09:47:53 antikythera k3s[21881]: {"level":"info","ts":"2022-03-17T09:47:53.764-0700","caller":"rafthttp/stream.go:249","msg":"set message encoder","from":"fcfb4c91f4fc885c","to":"87e21aa89889ebe3","stream-type":"stream Message"} Mar 17 09:47:53 antikythera k3s[21881]: {"level":"info","ts":"2022-03-17T09:47:53.764-0700","caller":"rafthttp/peer_status.go:53","msg":"peer became active","peer-id":"87e21aa89889ebe3"} Mar 17 09:47:53 antikythera k3s[21881]: {"level":"warn","ts":"2022-03-17T09:47:53.764-0700","caller":"rafthttp/stream.go:223","msg":"lost TCP streaming connection with remote peer","stream-writer-type":"stream MsgApp v2","local-member-id":"fcfb4c91f4fc885c","remote-peer-id":"87e21aa89889ebe3"} Mar 17 09:47:53 antikythera k3s[21881]: {"level":"info","ts":"2022-03-17T09:47:53.764-0700","caller":"rafthttp/stream.go:274","msg":"established TCP streaming connection with remote peer","stream-writer-type":"stream Message","local-member-id":"fcfb4c91f4fc885c","remote-peer-id":"87e21aa89889ebe3"} Mar 17 09:47:53 antikythera k3s[21881]: {"level":"info","ts":"2022-03-17T09:47:53.767-0700","caller":"rafthttp/stream.go:249","msg":"set message encoder","from":"fcfb4c91f4fc885c","to":"87e21aa89889ebe3","stream-type":"stream MsgApp v2"} Mar 17 09:47:53 antikythera k3s[21881]: {"level":"info","ts":"2022-03-17T09:47:53.767-0700","caller":"rafthttp/stream.go:274","msg":"established TCP streaming connection with remote peer","stream-writer-type":"stream MsgApp v2","local-member-id":"fcfb4c91f4fc885c","remote-peer-id":"87e21aa89889ebe3"} Mar 17 09:47:54 antikythera k3s[21881]: {"level":"warn","ts":"2022-03-17T09:47:54.353-0700","caller":"etcdserver/util.go:123","msg":"failed to apply request","took":"11.865µs","request":"header: txn: success:> failure:<>>","response":"","error":"etcdserver: no space"} Mar 17 09:47:54 antikythera k3s[21881]: {"level":"warn","ts":"2022-03-17T09:47:54.437-0700","caller":"rafthttp/stream.go:421","msg":"lost TCP streaming connection with remote peer","stream-reader-type":"stream MsgApp v2","local-member-id":"fcfb4c91f4fc885c","remote-peer-id":"87e21aa89889ebe3","error":"unexpected EOF"} Mar 17 09:47:54 antikythera k3s[21881]: {"level":"warn","ts":"2022-03-17T09:47:54.437-0700","caller":"rafthttp/stream.go:421","msg":"lost TCP streaming connection with remote peer","stream-reader-type":"stream Message","local-member-id":"fcfb4c91f4fc885c","remote-peer-id":"87e21aa89889ebe3","error":"unexpected EOF"} Mar 17 09:47:54 antikythera k3s[21881]: {"level":"warn","ts":"2022-03-17T09:47:54.437-0700","caller":"rafthttp/peer_status.go:66","msg":"peer became inactive (message send to peer failed)","peer-id":"87e21aa89889ebe3","error":"failed to read 87e21aa89889ebe3 on stream MsgApp v2 (unexpected EOF)"} Mar 17 09:47:55 antikythera k3s[21881]: {"level":"warn","ts":"2022-03-17T09:47:55.961-0700","caller":"rafthttp/stream.go:194","msg":"lost TCP streaming connection with remote peer","stream-writer-type":"stream Message","local-member-id":"fcfb4c91f4fc885c","remote-peer-id":"87e21aa89889ebe3"} Mar 17 09:47:55 antikythera k3s[21881]: {"level":"warn","ts":"2022-03-17T09:47:55.961-0700","caller":"rafthttp/probing_status.go:68","msg":"prober detected unhealthy status","round-tripper-name":"ROUND_TRIPPER_SNAPSHOT","remote-peer-id":"3fdd1f92a3b0a374","rtt":"0s","error":"dial tcp 192.168.1.62:2380: connect: no route to host"} Mar 17 09:47:55 antikythera k3s[21881]: {"level":"warn","ts":"2022-03-17T09:47:55.961-0700","caller":"rafthttp/probing_status.go:68","msg":"prober detected unhealthy status","round-tripper-name":"ROUND_TRIPPER_RAFT_MESSAGE","remote-peer-id":"3fdd1f92a3b0a374","rtt":"0s","error":"dial tcp 192.168.1.62:2380: connect: no route to host"} Mar 17 09:47:55 antikythera k3s[21881]: {"level":"warn","ts":"2022-03-17T09:47:55.961-0700","caller":"rafthttp/probing_status.go:68","msg":"prober detected unhealthy status","round-tripper-name":"ROUND_TRIPPER_RAFT_MESSAGE","remote-peer-id":"87e21aa89889ebe3","rtt":"0s","error":"dial tcp 192.168.1.31:2380: connect: connection refused"} Mar 17 09:47:55 antikythera k3s[21881]: {"level":"warn","ts":"2022-03-17T09:47:55.963-0700","caller":"rafthttp/probing_status.go:68","msg":"prober detected unhealthy status","round-tripper-name":"ROUND_TRIPPER_SNAPSHOT","remote-peer-id":"87e21aa89889ebe3","rtt":"0s","error":"dial tcp 192.168.1.31:2380: connect: connection refused"} Mar 17 09:47:56 antikythera k3s[21881]: {"level":"warn","ts":"2022-03-17T09:47:56.310-0700","caller":"etcdserver/cluster_util.go:288","msg":"failed to reach the peer URL","address":"https://192.168.1.62:2380/version","remote-member-id":"3fdd1f92a3b0a374","error":"Get \"https://192.168.1.62:2380/version\": dial tcp 192.168.1.62:2380: connect: no route to host"} Mar 17 09:47:56 antikythera k3s[21881]: {"level":"warn","ts":"2022-03-17T09:47:56.310-0700","caller":"etcdserver/cluster_util.go:155","msg":"failed to get version","remote-member-id":"3fdd1f92a3b0a374","error":"Get \"https://192.168.1.62:2380/version\": dial tcp 192.168.1.62:2380: connect: no route to host"} Mar 17 09:47:56 antikythera k3s[21881]: {"level":"warn","ts":"2022-03-17T09:47:56.311-0700","caller":"etcdserver/cluster_util.go:288","msg":"failed to reach the peer URL","address":"https://192.168.1.31:2380/version","remote-member-id":"87e21aa89889ebe3","error":"Get \"https://192.168.1.31:2380/version\": dial tcp 192.168.1.31:2380: connect: connection refused"} Mar 17 09:47:56 antikythera k3s[21881]: {"level":"warn","ts":"2022-03-17T09:47:56.311-0700","caller":"etcdserver/cluster_util.go:155","msg":"failed to get version","remote-member-id":"87e21aa89889ebe3","error":"Get \"https://192.168.1.31:2380/version\": dial tcp 192.168.1.31:2380: connect: connection refused"} Mar 17 09:47:58 antikythera k3s[21881]: {"level":"warn","ts":"2022-03-17T09:47:58.310-0700","caller":"etcdserver/v3_server.go:792","msg":"ignored out-of-date read index response; local node read indexes queueing up and waiting to be in sync with leader","sent-request-id":9825868781168043781,"received-request-id":9825868781165938441} Mar 17 09:47:58 antikythera k3s[21881]: time="2022-03-17T09:47:58-07:00" level=info msg="Connecting to proxy" url="wss://127.0.0.1:6443/v1-k3s/connect" Mar 17 09:47:58 antikythera k3s[21881]: time="2022-03-17T09:47:58-07:00" level=error msg="Failed to connect to proxy" error="websocket: bad handshake" Mar 17 09:47:58 antikythera k3s[21881]: time="2022-03-17T09:47:58-07:00" level=error msg="Remotedialer proxy error" error="websocket: bad handshake" Mar 17 09:47:58 antikythera k3s[21881]: {"level":"warn","ts":"2022-03-17T09:47:58.811-0700","caller":"etcdserver/v3_server.go:815","msg":"waiting for ReadIndex response took too long, retrying","sent-request-id":9825868781168043781,"retry-timeout":"500ms"} Mar 17 09:47:59 antikythera k3s[21881]: {"level":"warn","ts":"2022-03-17T09:47:59.294-0700","caller":"rafthttp/stream.go:194","msg":"lost TCP streaming connection with remote peer","stream-writer-type":"stream MsgApp v2","local-member-id":"fcfb4c91f4fc885c","remote-peer-id":"87e21aa89889ebe3"} Mar 17 09:47:59 antikythera k3s[21881]: {"level":"warn","ts":"2022-03-17T09:47:59.311-0700","caller":"etcdserver/v3_server.go:815","msg":"waiting for ReadIndex response took too long, retrying","sent-request-id":9825868781168043781,"retry-timeout":"500ms"} Mar 17 09:47:59 antikythera k3s[21881]: time="2022-03-17T09:47:59-07:00" level=info msg="Cluster-Http-Server 2022/03/17 09:47:59 http: TLS handshake error from 192.168.1.31:39704: remote error: tls: bad certificate" Mar 17 09:47:59 antikythera k3s[21881]: {"level":"warn","ts":"2022-03-17T09:47:59.812-0700","caller":"etcdserver/v3_server.go:815","msg":"waiting for ReadIndex response took too long, retrying","sent-request-id":9825868781168043781,"retry-timeout":"500ms"} Mar 17 09:48:00 antikythera k3s[21881]: {"level":"info","ts":"2022-03-17T09:48:00.278-0700","caller":"rafthttp/peer_status.go:53","msg":"peer became active","peer-id":"87e21aa89889ebe3"} Mar 17 09:48:00 antikythera k3s[21881]: {"level":"info","ts":"2022-03-17T09:48:00.278-0700","caller":"rafthttp/stream.go:412","msg":"established TCP streaming connection with remote peer","stream-reader-type":"stream MsgApp v2","local-member-id":"fcfb4c91f4fc885c","remote-peer-id":"87e21aa89889ebe3"} Mar 17 09:48:00 antikythera k3s[21881]: {"level":"info","ts":"2022-03-17T09:48:00.278-0700","caller":"rafthttp/stream.go:412","msg":"established TCP streaming connection with remote peer","stream-reader-type":"stream Message","local-member-id":"fcfb4c91f4fc885c","remote-peer-id":"87e21aa89889ebe3"} Mar 17 09:48:00 antikythera k3s[21881]: {"level":"info","ts":"2022-03-17T09:48:00.281-0700","caller":"rafthttp/stream.go:249","msg":"set message encoder","from":"fcfb4c91f4fc885c","to":"87e21aa89889ebe3","stream-type":"stream Message"} Mar 17 09:48:00 antikythera k3s[21881]: {"level":"info","ts":"2022-03-17T09:48:00.281-0700","caller":"rafthttp/stream.go:274","msg":"established TCP streaming connection with remote peer","stream-writer-type":"stream Message","local-member-id":"fcfb4c91f4fc885c","remote-peer-id":"87e21aa89889ebe3"} Mar 17 09:48:00 antikythera k3s[21881]: {"level":"info","ts":"2022-03-17T09:48:00.283-0700","caller":"rafthttp/stream.go:249","msg":"set message encoder","from":"fcfb4c91f4fc885c","to":"87e21aa89889ebe3","stream-type":"stream MsgApp v2"} Mar 17 09:48:00 antikythera k3s[21881]: {"level":"info","ts":"2022-03-17T09:48:00.283-0700","caller":"rafthttp/stream.go:274","msg":"established TCP streaming connection with remote peer","stream-writer-type":"stream MsgApp v2","local-member-id":"fcfb4c91f4fc885c","remote-peer-id":"87e21aa89889ebe3"} Mar 17 09:48:00 antikythera k3s[21881]: {"level":"info","ts":"2022-03-17T09:48:00.292-0700","caller":"traceutil/trace.go:171","msg":"trace[168056599] linearizableReadLoop","detail":"{readStateIndex:457073654; appliedIndex:457073654; }","duration":"1.981516164s","start":"2022-03-17T09:47:58.310-0700","end":"2022-03-17T09:48:00.292-0700","steps":["trace[168056599] 'read index received' (duration: 1.981502545s)","trace[168056599] 'applied index is now lower than readState.Index' (duration: 11.264µs)"],"step_count":2} Mar 17 09:48:00 antikythera k3s[21881]: {"level":"warn","ts":"2022-03-17T09:48:00.292-0700","caller":"etcdserver/util.go:166","msg":"apply request took too long","took":"1.981865387s","expected-duration":"100ms","prefix":"read-only range ","request":"key:\"k3s/etcd/learnerProgress\" ","response":"range_response_count:1 size:146"} Mar 17 09:48:00 antikythera k3s[21881]: {"level":"warn","ts":"2022-03-17T09:48:00.292-0700","caller":"v3rpc/interceptor.go:197","msg":"request stats","start time":"2022-03-17T09:47:55.981-0700","time spent":"4.311055234s","remote":"127.0.0.1:49778","response type":"/etcdserverpb.Maintenance/Alarm","request count":-1,"request size":-1,"response count":-1,"response size":-1,"request content":""} Mar 17 09:48:00 antikythera k3s[21881]: {"level":"info","ts":"2022-03-17T09:48:00.292-0700","caller":"traceutil/trace.go:171","msg":"trace[544195890] range","detail":"{range_begin:k3s/etcd/learnerProgress; range_end:; response_count:1; response_revision:420403256; }","duration":"1.981954266s","start":"2022-03-17T09:47:58.310-0700","end":"2022-03-17T09:48:00.292-0700","steps":["trace[544195890] 'agreement among raft nodes before linearized reading' (duration: 1.981642919s)"],"step_count":1} Mar 17 09:48:00 antikythera k3s[21881]: {"level":"warn","ts":"2022-03-17T09:48:00.292-0700","caller":"v3rpc/interceptor.go:197","msg":"request stats","start time":"2022-03-17T09:47:58.310-0700","time spent":"1.982071788s","remote":"127.0.0.1:49778","response type":"/etcdserverpb.KV/Range","request count":0,"request size":26,"response count":1,"response size":172,"request content":"key:\"k3s/etcd/learnerProgress\" "} Mar 17 09:48:00 antikythera k3s[21881]: time="2022-03-17T09:48:00-07:00" level=info msg="etcd data store connection OK" Mar 17 09:48:00 antikythera k3s[21881]: time="2022-03-17T09:48:00-07:00" level=info msg="Waiting for API server to become available" Mar 17 09:48:00 antikythera k3s[21881]: Flag --insecure-port has been deprecated, This flag has no effect now and will be removed in v1.24. Mar 17 09:48:00 antikythera k3s[21881]: I0317 09:48:00.299615 21881 server.go:593] external host was not specified, using 192.168.1.33 Mar 17 09:48:00 antikythera k3s[21881]: I0317 09:48:00.300269 21881 server.go:186] Version: v1.23.4+k3s-95f66a04 Mar 17 09:48:00 antikythera k3s[21881]: I0317 09:48:00.307194 21881 shared_informer.go:240] Waiting for caches to sync for node_authorizer Mar 17 09:48:00 antikythera k3s[21881]: I0317 09:48:00.310236 21881 plugins.go:158] Loaded 12 mutating admission controller(s) successfully in the following order: NamespaceLifecycle,LimitRanger,ServiceAccount,NodeRestriction,TaintNodesByCondition,Priority,DefaultTolerationSeconds,DefaultStorageClass,StorageObjectInUseProtection,RuntimeClass,DefaultIngressClass,MutatingAdmissionWebhook. Mar 17 09:48:00 antikythera k3s[21881]: I0317 09:48:00.310278 21881 plugins.go:161] Loaded 11 validating admission controller(s) successfully in the following order: LimitRanger,ServiceAccount,PodSecurity,Priority,PersistentVolumeClaimResize,RuntimeClass,CertificateApproval,CertificateSigning,CertificateSubjectRestriction,ValidatingAdmissionWebhook,ResourceQuota. Mar 17 09:48:00 antikythera k3s[21881]: I0317 09:48:00.312902 21881 plugins.go:158] Loaded 12 mutating admission controller(s) successfully in the following order: NamespaceLifecycle,LimitRanger,ServiceAccount,NodeRestriction,TaintNodesByCondition,Priority,DefaultTolerationSeconds,DefaultStorageClass,StorageObjectInUseProtection,RuntimeClass,DefaultIngressClass,MutatingAdmissionWebhook. Mar 17 09:48:00 antikythera k3s[21881]: I0317 09:48:00.312939 21881 plugins.go:161] Loaded 11 validating admission controller(s) successfully in the following order: LimitRanger,ServiceAccount,PodSecurity,Priority,PersistentVolumeClaimResize,RuntimeClass,CertificateApproval,CertificateSigning,CertificateSubjectRestriction,ValidatingAdmissionWebhook,ResourceQuota. Mar 17 09:48:00 antikythera k3s[21881]: {"level":"warn","ts":"2022-03-17T09:48:00.347-0700","caller":"etcdserver/util.go:123","msg":"failed to apply request","took":"12.531µs","request":"header: txn: success:> failure:<>>","response":"","error":"etcdserver: no space"} Mar 17 09:48:00 antikythera k3s[21881]: {"level":"warn","ts":"2022-03-17T09:48:00.348-0700","logger":"etcd-client","caller":"v3@v3.5.1-k3s1/retry_interceptor.go:62","msg":"retrying of unary invoker failed","target":"etcd-endpoints://0xc00d88e000/127.0.0.1:2379","attempt":0,"error":"rpc error: code = ResourceExhausted desc = etcdserver: mvcc: database space exceeded"} Mar 17 09:48:00 antikythera k3s[21881]: panic: etcdserver: mvcc: database space exceeded Mar 17 09:48:00 antikythera k3s[21881]: goroutine 472 [running]: Mar 17 09:48:00 antikythera k3s[21881]: github.com/k3s-io/k3s/pkg/cluster.(*Cluster).Start.func1() Mar 17 09:48:00 antikythera k3s[21881]: #011/go/src/github.com/k3s-io/k3s/pkg/cluster/cluster.go:104 +0xff Mar 17 09:48:00 antikythera k3s[21881]: created by github.com/k3s-io/k3s/pkg/cluster.(*Cluster).Start Mar 17 09:48:00 antikythera k3s[21881]: #011/go/src/github.com/k3s-io/k3s/pkg/cluster/cluster.go:99 +0x66f Mar 17 09:48:00 antikythera systemd[1]: k3s.service: Main process exited, code=exited, status=2/INVALIDARGUMENT Mar 17 09:48:00 antikythera systemd[1]: k3s.service: Failed with result 'exit-code'. Mar 17 09:48:00 antikythera systemd[1]: Failed to start Lightweight Kubernetes. Mar 17 09:48:00 antikythera systemd[1]: k3s.service: Consumed 28.152s CPU time. Mar 17 09:48:05 antikythera systemd[1]: k3s.service: Scheduled restart job, restart counter is at 3. Mar 17 09:48:05 antikythera systemd[1]: Stopped Lightweight Kubernetes. Mar 17 09:48:05 antikythera systemd[1]: k3s.service: Consumed 28.152s CPU time. ```
brandond commented 2 years ago

I'm not sure what's going on with etcd but the messages suggest that either you've set it to 10GB or 11GB instead of 8GB, or there's some internal math that etcd is doing on the quota-backend-bytes flag:

Mar 17 09:47:39 antikythera k3s[21881]: {"level":"info","ts":"2022-03-17T09:47:39.642-0700","caller":"embed/etcd.go:307","msg":"starting an etcd server","etcd-version":"3.5.1","git-sha":"Not provided (use ./build instead of go build)","go-version":"go1.17.5","go-os":"linux","go-arch":"amd64","max-cpu-set":32,"max-cpu-available":32,"member-initialized":true,"name":"antikythera-0948c62a","data-dir":"/var/lib/rancher/k3s/server/db/etcd","wal-dir":"","wal-dir-dedicated":"","member-dir":"/var/lib/rancher/k3s/server/db/etcd/member","force-new-cluster":false,"heartbeat-interval":"500ms","election-timeout":"5s","initial-election-tick-advance":true,"snapshot-count":100000,"snapshot-catchup-entries":5000,"initial-advertise-peer-urls":["http://localhost:2380"],"listen-peer-urls":["https://192.168.1.33:2380"],"advertise-client-urls":["https://192.168.1.33:2379"],"listen-client-urls":["https://127.0.0.1:2379","https://192.168.1.33:2379"],"listen-metrics-urls":["http://127.0.0.1:2381"],"cors":["*"],"host-whitelist":["*"],"initial-cluster":"","initial-cluster-state":"new","initial-cluster-token":"","quota-size-bytes":10737418240,"pre-vote":true,"initial-corrupt-check":false,"corrupt-check-time-interval":"0s","auto-compaction-mode":"","auto-compaction-retention":"0s","auto-compaction-interval":"0s","discovery-url":"","discovery-proxy":"","downgrade-check-interval":"5s"}
Mar 17 09:47:40 antikythera k3s[21881]: {"level":"warn","ts":"2022-03-17T09:47:40.949-0700","caller":"etcdserver/quota.go:108","msg":"quota exceeds the maximum value","quota-name":"v3-applier","quota-size-bytes":10737418240,"quota-size":"11 GB","quota-maximum-size-bytes":8589934592,"quota-maximum-size":"8.6 GB"}
Mar 17 09:47:40 antikythera k3s[21881]: {"level":"info","ts":"2022-03-17T09:47:40.949-0700","caller":"etcdserver/quota.go:117","msg":"enabled backend quota","quota-name":"v3-applier","quota-size-bytes":10737418240,"quota-size":"11 GB"}

Specifically this bit: "msg":"quota exceeds the maximum value","quota-name":"v3-applier","quota-size-bytes":10737418240,"quota-size":"11 GB","quota-maximum-size-bytes":8589934592,"quota-maximum-size":"8.6 GB"

Can you confirm that you're not setting it to anything above 8GB? If so, perhaps try reducing it to 6GB?

ssmall commented 2 years ago

Oh, good catch. I did up it to 10GiB previously when I was trying to debug the issue on my own. It sounds like there is a separate setting (quota-maximum-size?) that I'm running afoul of. What would be the best way to proceed? Should I decrease the quota setting back to 8GiB or change the maximum size?

brandond commented 2 years ago

Try setting it to 8GB instead of 10. If that doesn't work, then we can figure out how to alter that other setting. If it's actually stored anywhere outside the DB itself (and not just calculated from the quota-backend-bytes setting), it would be at /var/lib/rancher/k3s/server/db/etcd/config - maybe take a quick look at that?

ssmall commented 2 years ago

Still having issues on startup after adjusting the quota size back down to 8GiB:

Click to expand! ``` Mar 17 17:22:21 antikythera systemd[1]: Starting Lightweight Kubernetes... Mar 17 17:22:21 antikythera sh[22297]: + /usr/bin/systemctl is-enabled --quiet nm-cloud-setup.service Mar 17 17:22:21 antikythera sh[22298]: Failed to get unit file state for nm-cloud-setup.service: No such file or directory Mar 17 17:22:21 antikythera k3s[22301]: time="2022-03-17T17:22:21-07:00" level=info msg="Starting k3s v1.23.4+k3s-95f66a04 (95f66a04)" Mar 17 17:22:21 antikythera k3s[22301]: time="2022-03-17T17:22:21-07:00" level=info msg="Managed etcd cluster bootstrap already complete and initialized" Mar 17 17:22:21 antikythera k3s[22301]: time="2022-03-17T17:22:21-07:00" level=info msg="Starting temporary etcd to reconcile with datastore" Mar 17 17:22:22 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:22.246-0700","caller":"embed/etcd.go:131","msg":"configuring peer listeners","listen-peer-urls":["http://127.0.0.1:2400"]} Mar 17 17:22:22 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:22.247-0700","caller":"embed/etcd.go:139","msg":"configuring client listeners","listen-client-urls":["http://127.0.0.1:2399"]} Mar 17 17:22:22 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:22.247-0700","caller":"embed/etcd.go:307","msg":"starting an etcd server","etcd-version":"3.5.1","git-sha":"Not provided (use ./build instead of go build)","go-version":"go1.17.5","go-os":"linux","go-arch":"amd64","max-cpu-set":32,"max-cpu-available":32,"member-initialized":true,"name":"antikythera-0948c62a","data-dir":"/var/lib/rancher/k3s/server/db/etcd-tmp","wal-dir":"","wal-dir-dedicated":"","member-dir":"/var/lib/rancher/k3s/server/db/etcd-tmp/member","force-new-cluster":true,"heartbeat-interval":"500ms","election-timeout":"5s","initial-election-tick-advance":true,"snapshot-count":100000,"snapshot-catchup-entries":5000,"initial-advertise-peer-urls":["http://127.0.0.1:2400"],"listen-peer-urls":["http://127.0.0.1:2400"],"advertise-client-urls":["http://127.0.0.1:2399"],"listen-client-urls":["http://127.0.0.1:2399"],"listen-metrics-urls":[],"cors":["*"],"host-whitelist":["*"],"initial-cluster":"","initial-cluster-state":"new","initial-cluster-token":"","quota-size-bytes":2147483648,"pre-vote":true,"initial-corrupt-check":false,"corrupt-check-time-interval":"0s","auto-compaction-mode":"","auto-compaction-retention":"0s","auto-compaction-interval":"0s","discovery-url":"","discovery-proxy":"","downgrade-check-interval":"5s"} Mar 17 17:22:22 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:22.319-0700","caller":"etcdserver/backend.go:81","msg":"opened backend db","path":"/var/lib/rancher/k3s/server/db/etcd-tmp/member/snap/db","took":"72.012799ms"} Mar 17 17:22:22 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:22.995-0700","caller":"etcdserver/server.go:508","msg":"recovered v2 store from snapshot","snapshot-index":457052414,"snapshot-size":"406 kB"} Mar 17 17:22:24 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:24.487-0700","caller":"etcdserver/server.go:518","msg":"recovered v3 backend from snapshot","backend-size-bytes":357355520,"backend-size":"357 MB","backend-size-in-use-bytes":35020800,"backend-size-in-use":"35 MB"} Mar 17 17:22:24 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:24.971-0700","caller":"etcdserver/raft.go:526","msg":"discarding uncommitted WAL entries","entry-index":457073657,"commit-index-from-wal":457073656,"number-of-discarded-entries":1} Mar 17 17:22:25 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:25.071-0700","caller":"etcdserver/raft.go:556","msg":"forcing restart member","cluster-id":"d1c8afd71ab75419","local-member-id":"fcfb4c91f4fc885c","commit-index":457073658} Mar 17 17:22:25 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:25.072-0700","logger":"raft","caller":"etcdserver/zap_raft.go:77","msg":"fcfb4c91f4fc885c switched to configuration voters=(4601869108914463604 9791417851272883171 18229248106476374108)"} Mar 17 17:22:25 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:25.072-0700","logger":"raft","caller":"etcdserver/zap_raft.go:77","msg":"fcfb4c91f4fc885c became follower at term 68405"} Mar 17 17:22:25 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:25.072-0700","logger":"raft","caller":"etcdserver/zap_raft.go:77","msg":"newRaft fcfb4c91f4fc885c [peers: [3fdd1f92a3b0a374,87e21aa89889ebe3,fcfb4c91f4fc885c], term: 68405, commit: 457073658, applied: 457052414, lastindex: 457073658, lastterm: 68405]"} Mar 17 17:22:25 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:25.073-0700","caller":"api/capability.go:75","msg":"enabled capabilities for version","cluster-version":"3.5"} Mar 17 17:22:25 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:25.073-0700","caller":"membership/cluster.go:278","msg":"recovered/added member from store","cluster-id":"d1c8afd71ab75419","local-member-id":"fcfb4c91f4fc885c","recovered-remote-peer-id":"3fdd1f92a3b0a374","recovered-remote-peer-urls":["https://192.168.1.62:2380"]} Mar 17 17:22:25 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:25.073-0700","caller":"membership/cluster.go:278","msg":"recovered/added member from store","cluster-id":"d1c8afd71ab75419","local-member-id":"fcfb4c91f4fc885c","recovered-remote-peer-id":"87e21aa89889ebe3","recovered-remote-peer-urls":["https://192.168.1.31:2380"]} Mar 17 17:22:25 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:25.073-0700","caller":"membership/cluster.go:278","msg":"recovered/added member from store","cluster-id":"d1c8afd71ab75419","local-member-id":"fcfb4c91f4fc885c","recovered-remote-peer-id":"fcfb4c91f4fc885c","recovered-remote-peer-urls":["https://192.168.1.33:2380"]} Mar 17 17:22:25 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:25.073-0700","caller":"membership/cluster.go:287","msg":"set cluster version from store","cluster-version":"3.5"} Mar 17 17:22:25 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:22:25.086-0700","caller":"auth/store.go:1220","msg":"simple token is not cryptographically signed"} Mar 17 17:22:25 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:25.095-0700","caller":"mvcc/kvstore.go:345","msg":"restored last compact revision","meta-bucket-name":"meta","meta-bucket-name-key":"finishedCompactRev","restored-compact-revision":420398777} Mar 17 17:22:25 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:25.163-0700","caller":"mvcc/kvstore.go:415","msg":"kvstore restored","current-rev":420403256} Mar 17 17:22:25 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:25.170-0700","caller":"etcdserver/quota.go:94","msg":"enabled backend quota with default value","quota-name":"v3-applier","quota-size-bytes":2147483648,"quota-size":"2.1 GB"} Mar 17 17:22:25 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:25.178-0700","caller":"rafthttp/peer.go:133","msg":"starting remote peer","remote-peer-id":"3fdd1f92a3b0a374"} Mar 17 17:22:25 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:25.178-0700","caller":"rafthttp/pipeline.go:72","msg":"started HTTP pipelining with remote peer","local-member-id":"fcfb4c91f4fc885c","remote-peer-id":"3fdd1f92a3b0a374"} Mar 17 17:22:25 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:25.179-0700","caller":"rafthttp/stream.go:169","msg":"started stream writer with remote peer","local-member-id":"fcfb4c91f4fc885c","remote-peer-id":"3fdd1f92a3b0a374"} Mar 17 17:22:25 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:25.179-0700","caller":"rafthttp/stream.go:169","msg":"started stream writer with remote peer","local-member-id":"fcfb4c91f4fc885c","remote-peer-id":"3fdd1f92a3b0a374"} Mar 17 17:22:25 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:25.179-0700","caller":"rafthttp/peer.go:137","msg":"started remote peer","remote-peer-id":"3fdd1f92a3b0a374"} Mar 17 17:22:25 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:25.179-0700","caller":"rafthttp/transport.go:317","msg":"added remote peer","local-member-id":"fcfb4c91f4fc885c","remote-peer-id":"3fdd1f92a3b0a374","remote-peer-urls":["https://192.168.1.62:2380"]} Mar 17 17:22:25 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:25.179-0700","caller":"rafthttp/peer.go:133","msg":"starting remote peer","remote-peer-id":"87e21aa89889ebe3"} Mar 17 17:22:25 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:25.179-0700","caller":"rafthttp/stream.go:395","msg":"started stream reader with remote peer","stream-reader-type":"stream MsgApp v2","local-member-id":"fcfb4c91f4fc885c","remote-peer-id":"3fdd1f92a3b0a374"} Mar 17 17:22:25 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:25.180-0700","caller":"rafthttp/pipeline.go:72","msg":"started HTTP pipelining with remote peer","local-member-id":"fcfb4c91f4fc885c","remote-peer-id":"87e21aa89889ebe3"} Mar 17 17:22:25 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:25.180-0700","caller":"rafthttp/stream.go:395","msg":"started stream reader with remote peer","stream-reader-type":"stream Message","local-member-id":"fcfb4c91f4fc885c","remote-peer-id":"3fdd1f92a3b0a374"} Mar 17 17:22:25 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:25.181-0700","caller":"rafthttp/stream.go:169","msg":"started stream writer with remote peer","local-member-id":"fcfb4c91f4fc885c","remote-peer-id":"87e21aa89889ebe3"} Mar 17 17:22:25 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:25.181-0700","caller":"rafthttp/stream.go:169","msg":"started stream writer with remote peer","local-member-id":"fcfb4c91f4fc885c","remote-peer-id":"87e21aa89889ebe3"} Mar 17 17:22:25 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:25.181-0700","caller":"rafthttp/peer.go:137","msg":"started remote peer","remote-peer-id":"87e21aa89889ebe3"} Mar 17 17:22:25 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:25.181-0700","caller":"rafthttp/stream.go:395","msg":"started stream reader with remote peer","stream-reader-type":"stream MsgApp v2","local-member-id":"fcfb4c91f4fc885c","remote-peer-id":"87e21aa89889ebe3"} Mar 17 17:22:25 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:25.181-0700","caller":"rafthttp/stream.go:395","msg":"started stream reader with remote peer","stream-reader-type":"stream Message","local-member-id":"fcfb4c91f4 fc885c","remote-peer-id":"87e21aa89889ebe3"} Mar 17 17:22:25 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:25.181-0700","caller":"rafthttp/transport.go:317","msg":"added remote peer","local-member-id":"fcfb4c91f4fc885c","remote-peer-id":"87e21aa89889ebe3","remote-peer-urls":["https://192.168.1.31:2380"]} Mar 17 17:22:25 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:25.182-0700","caller":"etcdserver/server.go:834","msg":"starting etcd server","local-member-id":"fcfb4c91f4fc885c","local-server-version":"3.5.1","cluster-id":"d1c8afd71ab75419","cluster-version":"3.5"} Mar 17 17:22:25 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:25.182-0700","caller":"etcdserver/server.go:744","msg":"starting initial election tick advance","election-ticks":10} Mar 17 17:22:25 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:25.186-0700","caller":"embed/etcd.go:580","msg":"serving peer traffic","address":"127.0.0.1:2400"} Mar 17 17:22:25 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:25.186-0700","caller":"embed/etcd.go:552","msg":"cmux::serve","address":"127.0.0.1:2400"} Mar 17 17:22:25 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:25.186-0700","caller":"embed/etcd.go:276","msg":"now serving peer/client/metrics","local-member-id":"fcfb4c91f4fc885c","initial-advertise-peer-urls":["http://127.0.0.1:2400"],"listen-peer-urls":["http://127.0.0.1:2400"],"advertise-client-urls":["http://127.0.0.1:2399"],"listen-client-urls":["http://127.0.0.1:2399"],"listen-metrics-urls":[]} Mar 17 17:22:25 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:22:25.524-0700","caller":"etcdserver/util.go:123","msg":"failed to apply request","took":"13.615µs","request":"header: txn: success:> failure:<>>","response":"","error":"etcdserver: no space"} Mar 17 17:22:25 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:22:25.524-0700","caller":"etcdserver/util.go:123","msg":"failed to apply request","took":"1.761µs","request":"header: txn: success:> failure:<>>","response":"","error":"etcdserver: no space"} Mar 17 17:22:25 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:22:25.524-0700","caller":"etcdserver/util.go:123","msg":"failed to apply request","took":"1.777µs","request":"header: txn: success:> failure:<>>","response":"","error":"etcdserver: no space"} Mar 17 17:22:25 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:22:25.524-0700","caller":"etcdserver/util.go:123","msg":"failed to apply request","took":"1.478µs","request":"header: txn: success:> failure:<>>","response":"","error":"etcdserver: no space"} Mar 17 17:22:25 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:22:25.524-0700","caller":"etcdserver/util.go:123","msg":"failed to apply request","took":"1.581µs","request":"header: txn: success:> failure:<>>","response":"","error":"etcdserver: no space"} Mar 17 17:22:25 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:22:25.524-0700","caller":"etcdserver/util.go:123","msg":"failed to apply request","took":"1.636µs","request":"header: txn: success:> failure:<>>","response":"","error":"etcdserver: no space"} Mar 17 17:22:25 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:22:25.525-0700","caller":"etcdserver/util.go:123","msg":"failed to apply request","took":"1.393µs","request":"header: txn: success:> failure:<>>","response":"","error":"etcdserver: no space"} Mar 17 17:22:25 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:22:25.525-0700","caller":"etcdserver/util.go:123","msg":"failed to apply request","took":"1.518µs","request":"header: txn: success:> failure:<>>","response":"","error":"etcdserver: no space"} Mar 17 17:22:25 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:22:25.525-0700","caller":"etcdserver/util.go:123","msg":"failed to apply request","took":"1.575µs","request":"header: txn: success:> failure:<>>","response":"","error":"etcdserver: no space"} Mar 17 17:22:25 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:22:25.525-0700","caller":"etcdserver/util.go:123","msg":"failed to apply request","took":"1.375µs","request":"header: txn: success:> failure:<>>","response":"","error":"etcdserver: no space"} Mar 17 17:22:25 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:22:25.525-0700","caller":"etcdserver/util.go:123","msg":"failed to apply request","took":"1.432µs","request":"header: txn: success:> failure:<>>","response":"","error":"etcdserver: no space"} Mar 17 17:22:25 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:22:25.525-0700","caller":"etcdserver/util.go:123","msg":"failed to apply request","took":"1.391µs","request":"header: txn: success:> failure:<>>","response":"","error":"etcdserver: no space"} Mar 17 17:22:25 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:22:25.525-0700","caller":"etcdserver/util.go:123","msg":"failed to apply request","took":"1.338µs","request":"header: txn: success:> failure:<>>","response":"","error":"etcdserver: no space"} Mar 17 17:22:25 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:22:25.525-0700","caller":"etcdserver/util.go:123","msg":"failed to apply request","took":"1.511µs","request":"header: txn: success:> failure:<>>","response":"","error":"etcdserver: no space"} Mar 17 17:22:25 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:22:25.525-0700","caller":"etcdserver/util.go:123","msg":"failed to apply request","took":"1.459µs","request":"header: txn: success:> failure:<>>","response":"","error":"etcdserver: no space"} Mar 17 17:22:25 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:22:25.525-0700","caller":"etcdserver/util.go:123","msg":"failed to apply request","took":"1.484µs","request":"header: txn: success:> failure:<>>","response":"","error":"etcdserver: no space"} Mar 17 17:22:25 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:22:25.525-0700","caller":"etcdserver/util.go:123","msg":"failed to apply request","took":"1.385µs","request":"header: txn: success:> failure:<>>","response":"","error":"etcdserver: no space"} Mar 17 17:22:25 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:22:25.526-0700","caller":"etcdserver/util.go:123","msg":"failed to apply request","took":"1.341µs","request":"header: txn: success:> failure:<>>","response":"","error":"etcdserver: no space"} Mar 17 17:22:25 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:22:25.526-0700","caller":"etcdserver/util.go:123","msg":"failed to apply request","took":"1.32µs","request":"header: txn: success:> failure:<>>","response":"","error":"etcdserver: no space"} Mar 17 17:22:25 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:22:25.526-0700","caller":"etcdserver/util.go:123","msg":"failed to apply request","took":"2.262µs","request":"header: txn: success:> failure:<>>","response":"","error":"etcdserver: no space"} Mar 17 17:22:25 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:22:25.526-0700","caller":"etcdserver/util.go:123","msg":"failed to apply request","took":"6.943µs","request":"header: lease_grant:","response":"","error":"etcdserver: no space"} Mar 17 17:22:25 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:22:25.526-0700","caller":"etcdserver/util.go:123","msg":"failed to apply request","took":"1.888µs","request":"header: txn: success:> failure:<>>","response":"","error":"etcdserver: no space"} Mar 17 17:22:25 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:22:25.526-0700","caller":"etcdserver/util.go:123","msg":"failed to apply request","took":"2.125µs","request":"header: txn: success:> failure:<>>","response":"","error":"etcdserver: no space"} Mar 17 17:22:25 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:22:25.526-0700","caller":"etcdserver/util.go:123","msg":"failed to apply request","took":"1.987µs","request":"header: txn: success:> failure:<>>","response":"","error":"etcdserver: no space"} Mar 17 17:22:25 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:22:25.526-0700","caller":"etcdserver/util.go:123","msg":"failed to apply request","took":"2.05µs","request":"header: txn: success:> failure:<>>","response":"","error":"etcdserver: no space"} Mar 17 17:22:25 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:22:25.526-0700","caller":"etcdserver/util.go:123","msg":"failed to apply request","took":"1.986µs","request":"header: txn: success:> failure:<>>","response":"","error":"etcdserver: no space"} Mar 17 17:22:25 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:22:25.526-0700","caller":"etcdserver/util.go:123","msg":"failed to apply request","took":"2.315µs","request":"header: txn: success:> failure:<>>","response":"","error":"etcdserver: no space"} Mar 17 17:22:25 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:22:25.526-0700","caller":"etcdserver/util.go:123","msg":"failed to apply request","took":"1.94µs","request":"header: txn: success:> failure:<>>","response":"","error":"etcdserver: no space"} Mar 17 17:22:25 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:22:25.526-0700","caller":"etcdserver/util.go:123","msg":"failed to apply request","took":"2.241µs","request":"header: txn: success:> failure:<>>","response":"","error":"etcdserver: no space"} Mar 17 17:22:25 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:22:25.526-0700","caller":"etcdserver/util.go:123","msg":"failed to apply request","took":"1.344µs","request":"header: txn: success:> failure:<>>","response":"","error":"etcdserver: no space"} Mar 17 17:22:25 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:22:25.526-0700","caller":"etcdserver/util.go:123","msg":"failed to apply request","took":"1.471µs","request":"header: txn: success:> failure:<>>","response":"","error":"etcdserver: no space"} Mar 17 17:22:25 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:22:25.526-0700","caller":"etcdserver/util.go:123","msg":"failed to apply request","took":"1.271µs","request":"header: txn: success:> failure:<>>","response":"","error":"etcdserver: no space"} Mar 17 17:22:25 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:22:25.527-0700","caller":"etcdserver/util.go:123","msg":"failed to apply request","took":"1.367µs","request":"header: txn: success:> failure:<>>","response":"","error":"etcdserver: no space"} Mar 17 17:22:25 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:25.527-0700","logger":"raft","caller":"etcdserver/zap_raft.go:77","msg":"fcfb4c91f4fc885c switched to configuration voters=(9791417851272883171 18229248106476374108)"} Mar 17 17:22:25 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:25.527-0700","caller":"membership/cluster.go:472","msg":"removed member","cluster-id":"d1c8afd71ab75419","local-member-id":"fcfb4c91f4fc885c","removed-remote-peer-id":"3fdd1f92a3b0a374","removed-remote-peer-urls":["https://192.168.1.62:2380"]} Mar 17 17:22:25 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:25.527-0700","caller":"rafthttp/peer.go:330","msg":"stopping remote peer","remote-peer-id":"3fdd1f92a3b0a374"} Mar 17 17:22:25 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:25.527-0700","caller":"rafthttp/stream.go:294","msg":"stopped TCP streaming connection with remote peer","stream-writer-type":"unknown stream","remote-peer-id":"3fdd1f92a3b0a374"} Mar 17 17:22:25 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:25.527-0700","caller":"rafthttp/stream.go:294","msg":"stopped TCP streaming connection with remote peer","stream-writer-type":"unknown stream","remote-peer-id":"3fdd1f92a3b0a374"} Mar 17 17:22:25 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:25.527-0700","caller":"rafthttp/pipeline.go:85","msg":"stopped HTTP pipelining with remote peer","local-member-id":"fcfb4c91f4fc885c","remote-peer-id":"3fdd1f92a3b0a374"} Mar 17 17:22:25 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:25.527-0700","caller":"rafthttp/stream.go:442","msg":"stopped stream reader with remote peer","stream-reader-type":"stream MsgApp v2","local-member-id":"fcfb4c91f4fc885c","remote-peer-id":"3fdd1f92a3b0a374"} Mar 17 17:22:25 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:25.527-0700","caller":"rafthttp/stream.go:442","msg":"stopped stream reader with remote peer","stream-reader-type":"stream Message","local-member-id":"fcfb4c91f4fc885c","remote-peer-id":"3fdd1f92a3b0a374"} Mar 17 17:22:25 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:25.527-0700","caller":"rafthttp/peer.go:335","msg":"stopped remote peer","remote-peer-id":"3fdd1f92a3b0a374"} Mar 17 17:22:25 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:25.527-0700","caller":"rafthttp/transport.go:355","msg":"removed remote peer","local-member-id":"fcfb4c91f4fc885c","removed-remote-peer-id":"3fdd1f92a3b0a374"} Mar 17 17:22:25 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:25.528-0700","logger":"raft","caller":"etcdserver/zap_raft.go:77","msg":"fcfb4c91f4fc885c switched to configuration voters=(18229248106476374108)"} Mar 17 17:22:25 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:25.528-0700","caller":"membership/cluster.go:472","msg":"removed member","cluster-id":"d1c8afd71ab75419","local-member-id":"fcfb4c91f4fc885c","removed-remote-peer-id":"87e21aa89889ebe3","removed-remote-peer-urls":["https://192.168.1.31:2380"]} Mar 17 17:22:25 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:25.528-0700","caller":"rafthttp/peer.go:330","msg":"stopping remote peer","remote-peer-id":"87e21aa89889ebe3"} Mar 17 17:22:25 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:25.528-0700","caller":"rafthttp/stream.go:294","msg":"stopped TCP streaming connection with remote peer","stream-writer-type":"unknown stream","remote-peer-id":"87e21aa89889ebe3"} Mar 17 17:22:25 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:25.528-0700","caller":"rafthttp/stream.go:294","msg":"stopped TCP streaming connection with remote peer","stream-writer-type":"unknown stream","remote-peer-id":"87e21aa89889ebe3"} Mar 17 17:22:25 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:25.528-0700","caller":"rafthttp/pipeline.go:85","msg":"stopped HTTP pipelining with remote peer","local-member-id":"fcfb4c91f4fc885c","remote-peer-id":"87e21aa89889ebe3"} Mar 17 17:22:25 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:25.528-0700","caller":"rafthttp/stream.go:442","msg":"stopped stream reader with remote peer","stream-reader-type":"stream MsgApp v2","local-member-id":"fcfb4c91f4fc885c","remote-peer-id":"87e21aa89889ebe3"} Mar 17 17:22:25 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:25.528-0700","caller":"rafthttp/stream.go:442","msg":"stopped stream reader with remote peer","stream-reader-type":"stream Message","local-member-id":"fcfb4c91f4fc885c","remote-peer-id":"87e21aa89889ebe3"} Mar 17 17:22:25 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:25.528-0700","caller":"rafthttp/peer.go:335","msg":"stopped remote peer","remote-peer-id":"87e21aa89889ebe3"} Mar 17 17:22:25 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:25.528-0700","caller":"rafthttp/transport.go:355","msg":"removed remote peer","local-member-id":"fcfb4c91f4fc885c","removed-remote-peer-id":"87e21aa89889ebe3"} Mar 17 17:22:29 antikythera systemd[1]: Started Session 133 of user spencer. Mar 17 17:22:30 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:30.074-0700","logger":"raft","caller":"etcdserver/zap_raft.go:77","msg":"fcfb4c91f4fc885c is starting a new election at term 68405"} Mar 17 17:22:30 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:30.074-0700","logger":"raft","caller":"etcdserver/zap_raft.go:77","msg":"fcfb4c91f4fc885c became pre-candidate at term 68405"} Mar 17 17:22:30 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:30.074-0700","logger":"raft","caller":"etcdserver/zap_raft.go:77","msg":"fcfb4c91f4fc885c received MsgPreVoteResp from fcfb4c91f4fc885c at term 68405"} Mar 17 17:22:30 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:30.074-0700","logger":"raft","caller":"etcdserver/zap_raft.go:77","msg":"fcfb4c91f4fc885c became candidate at term 68406"} Mar 17 17:22:30 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:30.074-0700","logger":"raft","caller":"etcdserver/zap_raft.go:77","msg":"fcfb4c91f4fc885c received MsgVoteResp from fcfb4c91f4fc885c at term 68406"} Mar 17 17:22:30 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:30.074-0700","logger":"raft","caller":"etcdserver/zap_raft.go:77","msg":"fcfb4c91f4fc885c became leader at term 68406"} Mar 17 17:22:30 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:30.074-0700","logger":"raft","caller":"etcdserver/zap_raft.go:77","msg":"raft.node: fcfb4c91f4fc885c elected leader fcfb4c91f4fc885c at term 68406"} Mar 17 17:22:30 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:30.075-0700","caller":"etcdserver/server.go:2029","msg":"published local member to cluster through raft","local-member-id":"fcfb4c91f4fc885c","local-member-attributes":"{Name:antikythera-0948c62a ClientURLs:[http://127.0.0.1:2399]}","request-path":"/0/members/fcfb4c91f4fc885c/attributes","cluster-id":"d1c8afd71ab75419","publish-timeout":"15s"} Mar 17 17:22:30 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:30.075-0700","caller":"embed/serve.go:98","msg":"ready to serve client requests"} Mar 17 17:22:30 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:30.076-0700","caller":"embed/serve.go:140","msg":"serving client traffic insecurely; this is strongly discouraged!","address":"127.0.0.1:2399"} Mar 17 17:22:30 antikythera k3s[22301]: time="2022-03-17T17:22:30-07:00" level=info msg="etcd temporary data store connection OK" Mar 17 17:22:30 antikythera k3s[22301]: time="2022-03-17T17:22:30-07:00" level=info msg="Reconciling bootstrap data between datastore and disk" Mar 17 17:22:30 antikythera k3s[22301]: time="2022-03-17T17:22:30-07:00" level=debug msg="Reconciling ETCDPeerCA at '/var/lib/rancher/k3s/server/tls/etcd/peer-ca.crt'" Mar 17 17:22:30 antikythera k3s[22301]: time="2022-03-17T17:22:30-07:00" level=warning msg="Unable to lookup path to reconcile EncryptionHash" Mar 17 17:22:30 antikythera k3s[22301]: time="2022-03-17T17:22:30-07:00" level=debug msg="Reconciling PasswdFile at '/var/lib/rancher/k3s/server/cred/passwd'" Mar 17 17:22:30 antikythera k3s[22301]: time="2022-03-17T17:22:30-07:00" level=debug msg="Reconciling ServerCA at '/var/lib/rancher/k3s/server/tls/server-ca.crt'" Mar 17 17:22:30 antikythera k3s[22301]: time="2022-03-17T17:22:30-07:00" level=debug msg="Reconciling ClientCA at '/var/lib/rancher/k3s/server/tls/client-ca.crt'" Mar 17 17:22:30 antikythera k3s[22301]: time="2022-03-17T17:22:30-07:00" level=debug msg="Reconciling RequestHeaderCAKey at '/var/lib/rancher/k3s/server/tls/request-header-ca.key'" Mar 17 17:22:30 antikythera k3s[22301]: time="2022-03-17T17:22:30-07:00" level=debug msg="Reconciling ServiceKey at '/var/lib/rancher/k3s/server/tls/service.key'" Mar 17 17:22:30 antikythera k3s[22301]: time="2022-03-17T17:22:30-07:00" level=debug msg="Reconciling ETCDPeerCAKey at '/var/lib/rancher/k3s/server/tls/etcd/peer-ca.key'" Mar 17 17:22:30 antikythera k3s[22301]: time="2022-03-17T17:22:30-07:00" level=debug msg="Reconciling ETCDServerCAKey at '/var/lib/rancher/k3s/server/tls/etcd/server-ca.key'" Mar 17 17:22:30 antikythera k3s[22301]: time="2022-03-17T17:22:30-07:00" level=warning msg="Unable to lookup path to reconcile EncryptionConfig" Mar 17 17:22:30 antikythera k3s[22301]: time="2022-03-17T17:22:30-07:00" level=debug msg="Reconciling ClientCAKey at '/var/lib/rancher/k3s/server/tls/client-ca.key'" Mar 17 17:22:30 antikythera k3s[22301]: time="2022-03-17T17:22:30-07:00" level=debug msg="Reconciling ETCDServerCA at '/var/lib/rancher/k3s/server/tls/etcd/server-ca.crt'" Mar 17 17:22:30 antikythera k3s[22301]: time="2022-03-17T17:22:30-07:00" level=debug msg="Reconciling IPSECKey at '/var/lib/rancher/k3s/server/cred/ipsec.psk'" Mar 17 17:22:30 antikythera k3s[22301]: time="2022-03-17T17:22:30-07:00" level=debug msg="Reconciling RequestHeaderCA at '/var/lib/rancher/k3s/server/tls/request-header-ca.crt'" Mar 17 17:22:30 antikythera k3s[22301]: time="2022-03-17T17:22:30-07:00" level=debug msg="Reconciling ServerCAKey at '/var/lib/rancher/k3s/server/tls/server-ca.key'" Mar 17 17:22:30 antikythera k3s[22301]: time="2022-03-17T17:22:30-07:00" level=info msg="stopping etcd" Mar 17 17:22:30 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:30.150-0700","caller":"embed/etcd.go:367","msg":"closing etcd server","name":"antikythera-0948c62a","data-dir":"/var/lib/rancher/k3s/server/db/etcd-tmp","advertise-peer-urls":["http://127.0.0.1:2400"],"advertise-client-urls":["http://127.0.0.1:2399"]} Mar 17 17:22:30 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:30.152-0700","caller":"etcdserver/server.go:1438","msg":"skipped leadership transfer for single voting member cluster","local-member-id":"fcfb4c91f4fc885c","current-leader-member-id":"fcfb4c91f4fc885c"} Mar 17 17:22:30 antikythera k3s[22301]: time="2022-03-17T17:22:30-07:00" level=info msg="Starting etcd for existing cluster member" Mar 17 17:22:30 antikythera k3s[22301]: time="2022-03-17T17:22:30-07:00" level=info msg="certificate CN=k3s,O=k3s signed by CN=k3s-server-ca@1607286236: notBefore=2020-12-06 20:23:56 +0000 UTC notAfter=2023-03-18 00:22:30 +0000 UTC" Mar 17 17:22:30 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:30.164-0700","caller":"embed/etcd.go:131","msg":"configuring peer listeners","listen-peer-urls":["https://192.168.1.33:2380"]} Mar 17 17:22:30 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:30.164-0700","caller":"embed/etcd.go:478","msg":"starting with peer TLS","tls-info":"cert = /var/lib/rancher/k3s/server/tls/etcd/peer-server-client.crt, key = /var/lib/rancher/k3s/server/tls/etcd/peer-server-client.key, client-cert=, client-key=, trusted-ca = /var/lib/rancher/k3s/server/tls/etcd/peer-ca.crt, client-cert-auth = true, crl-file = ","cipher-suites":[]} Mar 17 17:22:30 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:30.165-0700","caller":"embed/etcd.go:139","msg":"configuring client listeners","listen-client-urls":["https://127.0.0.1:2379","https://192.168.1.33:2379"]} Mar 17 17:22:30 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:30.165-0700","caller":"embed/etcd.go:307","msg":"starting an etcd server","etcd-version":"3.5.1","git-sha":"Not provided (use ./build instead of go build)","go-version":"go1.17.5","go-os":"linux","go-arch":"amd64","max-cpu-set":32,"max-cpu-available":32,"member-initialized":true,"name":"antikythera-0948c62a","data-dir":"/var/lib/rancher/k3s/server/db/etcd","wal-dir":"","wal-dir-dedicated":"","member-dir":"/var/lib/rancher/k3s/server/db/etcd/member","force-new-cluster":false,"heartbeat-interval":"500ms","election-timeout":"5s","initial-election-tick-advance":true,"snapshot-count":100000,"snapshot-catchup-entries":5000,"initial-advertise-peer-urls":["http://localhost:2380"],"listen-peer-urls":["https://192.168.1.33:2380"],"advertise-client-urls":["https://192.168.1.33:2379"],"listen-client-urls":["https://127.0.0.1:2379","https://192.168.1.33:2379"],"listen-metrics-urls":["http://127.0.0.1:2381"],"cors":["*"],"host-whitelist":["*"],"initial-cluster":"","initial-cluster-state":"new","initial-cluster-token":"","quota-size-bytes":8589934592,"pre-vote":true,"initial-corrupt-check":false,"corrupt-check-time-interval":"0s","auto-compaction-mode":"","auto-compaction-retention":"0s","auto-compaction-interval":"0s","discovery-url":"","discovery-proxy":"","downgrade-check-interval":"5s"} Mar 17 17:22:30 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:30.243-0700","caller":"etcdserver/backend.go:81","msg":"opened backend db","path":"/var/lib/rancher/k3s/server/db/etcd/member/snap/db","took":"77.276102ms"} Mar 17 17:22:30 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:30.352-0700","caller":"embed/etcd.go:562","msg":"stopping serving peer traffic","address":"127.0.0.1:2400"} Mar 17 17:22:30 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:30.353-0700","caller":"embed/etcd.go:567","msg":"stopped serving peer traffic","address":"127.0.0.1:2400"} Mar 17 17:22:30 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:30.353-0700","caller":"embed/etcd.go:369","msg":"closed etcd server","name":"antikythera-0948c62a","data-dir":"/var/lib/rancher/k3s/server/db/etcd-tmp","advertise-peer-urls":["http://127.0.0.1:2400"],"advertise-client-urls":["http://127.0.0.1:2399"]} Mar 17 17:22:30 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:30.735-0700","caller":"etcdserver/server.go:508","msg":"recovered v2 store from snapshot","snapshot-index":457052414,"snapshot-size":"406 kB"} Mar 17 17:22:30 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:30.735-0700","caller":"etcdserver/server.go:518","msg":"recovered v3 backend from snapshot","backend-size-bytes":357355520,"backend-size":"357 MB","backend-size-in-use-bytes":35020800,"backend-size-in-use":"35 MB"} Mar 17 17:22:31 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:31.065-0700","caller":"etcdserver/raft.go:483","msg":"restarting local member","cluster-id":"d1c8afd71ab75419","local-member-id":"fcfb4c91f4fc885c","commit-index":457073656} Mar 17 17:22:31 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:31.066-0700","logger":"raft","caller":"etcdserver/zap_raft.go:77","msg":"fcfb4c91f4fc885c switched to configuration voters=(4601869108914463604 9791417851272883171 18229248106476374108)"} Mar 17 17:22:31 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:31.066-0700","logger":"raft","caller":"etcdserver/zap_raft.go:77","msg":"fcfb4c91f4fc885c became follower at term 68405"} Mar 17 17:22:31 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:31.066-0700","logger":"raft","caller":"etcdserver/zap_raft.go:77","msg":"newRaft fcfb4c91f4fc885c [peers: [3fdd1f92a3b0a374,87e21aa89889ebe3,fcfb4c91f4fc885c], term: 68405, commit: 457073656, applied: 457052414, lastindex: 457073657, lastterm: 68405]"} Mar 17 17:22:31 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:31.066-0700","caller":"membership/cluster.go:278","msg":"recovered/added member from store","cluster-id":"d1c8afd71ab75419","local-member-id":"fcfb4c91f4fc885c","recovered-remote-peer-id":"3fdd1f92a3b0a374","recovered-remote-peer-urls":["https://192.168.1.62:2380"]} Mar 17 17:22:31 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:31.066-0700","caller":"membership/cluster.go:278","msg":"recovered/added member from store","cluster-id":"d1c8afd71ab75419","local-member-id":"fcfb4c91f4fc885c","recovered-remote-peer-id":"87e21aa89889ebe3","recovered-remote-peer-urls":["https://192.168.1.31:2380"]} Mar 17 17:22:31 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:31.066-0700","caller":"membership/cluster.go:278","msg":"recovered/added member from store","cluster-id":"d1c8afd71ab75419","local-member-id":"fcfb4c91f4fc885c","recovered-remote-peer-id":"fcfb4c91f4fc885c","recovered-remote-peer-urls":["https://192.168.1.33:2380"]} Mar 17 17:22:31 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:31.066-0700","caller":"membership/cluster.go:287","msg":"set cluster version from store","cluster-version":"3.5"} Mar 17 17:22:31 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:22:31.082-0700","caller":"auth/store.go:1220","msg":"simple token is not cryptographically signed"} Mar 17 17:22:31 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:31.090-0700","caller":"mvcc/kvstore.go:345","msg":"restored last compact revision","meta-bucket-name":"meta","meta-bucket-name-key":"finishedCompactRev","restored-compact-revision":420398777} Mar 17 17:22:31 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:31.166-0700","caller":"mvcc/kvstore.go:415","msg":"kvstore restored","current-rev":420403256} Mar 17 17:22:31 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:31.183-0700","caller":"rafthttp/peer.go:133","msg":"starting remote peer","remote-peer-id":"3fdd1f92a3b0a374"} Mar 17 17:22:31 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:31.183-0700","caller":"rafthttp/pipeline.go:72","msg":"started HTTP pipelining with remote peer","local-member-id":"fcfb4c91f4fc885c","remote-peer-id":"3fdd1f92a3b0a374"} Mar 17 17:22:31 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:31.184-0700","caller":"rafthttp/stream.go:169","msg":"started stream writer with remote peer","local-member-id":"fcfb4c91f4fc885c","remote-peer-id":"3fdd1f92a3b0a374"} Mar 17 17:22:31 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:31.185-0700","caller":"rafthttp/stream.go:169","msg":"started stream writer with remote peer","local-member-id":"fcfb4c91f4fc885c","remote-peer-id":"3fdd1f92a3b0a374"} Mar 17 17:22:31 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:31.185-0700","caller":"rafthttp/peer.go:137","msg":"started remote peer","remote-peer-id":"3fdd1f92a3b0a374"} Mar 17 17:22:31 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:31.186-0700","caller":"rafthttp/transport.go:317","msg":"added remote peer","local-member-id":"fcfb4c91f4fc885c","remote-peer-id":"3fdd1f92a3b0a374","remote-peer-urls":["https://192.168.1.62:2380"]} Mar 17 17:22:31 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:31.186-0700","caller":"rafthttp/peer.go:133","msg":"starting remote peer","remote-peer-id":"87e21aa89889ebe3"} Mar 17 17:22:31 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:31.186-0700","caller":"rafthttp/stream.go:395","msg":"started stream reader with remote peer","stream-reader-type":"stream Message","local-member-id":"fcfb4c91f4fc885c","remote-peer-id":"3fdd1f92a3b0a374"} Mar 17 17:22:31 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:31.186-0700","caller":"rafthttp/stream.go:395","msg":"started stream reader with remote peer","stream-reader-type":"stream MsgApp v2","local-member-id":"fcfb4c91f4fc885c","remote-peer-id":"3fdd1f92a3b0a374"} Mar 17 17:22:31 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:31.186-0700","caller":"rafthttp/pipeline.go:72","msg":"started HTTP pipelining with remote peer","local-member-id":"fcfb4c91f4fc885c","remote-peer-id":"87e21aa89889ebe3"} Mar 17 17:22:31 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:31.186-0700","caller":"rafthttp/stream.go:169","msg":"started stream writer with remote peer","local-member-id":"fcfb4c91f4fc885c","remote-peer-id":"87e21aa89889ebe3"} Mar 17 17:22:31 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:31.187-0700","caller":"rafthttp/stream.go:169","msg":"started stream writer with remote peer","local-member-id":"fcfb4c91f4fc885c","remote-peer-id":"87e21aa89889ebe3"} Mar 17 17:22:31 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:31.188-0700","caller":"rafthttp/peer.go:137","msg":"started remote peer","remote-peer-id":"87e21aa89889ebe3"} Mar 17 17:22:31 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:31.188-0700","caller":"rafthttp/transport.go:317","msg":"added remote peer","local-member-id":"fcfb4c91f4fc885c","remote-peer-id":"87e21aa89889ebe3","remote-peer-urls":["https://192.168.1.31:2380"]} Mar 17 17:22:31 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:31.188-0700","caller":"rafthttp/stream.go:395","msg":"started stream reader with remote peer","stream-reader-type":"stream MsgApp v2","local-member-id":"fcfb4c91f4fc885c","remote-peer-id":"87e21aa89889ebe3"} Mar 17 17:22:31 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:31.188-0700","caller":"rafthttp/stream.go:395","msg":"started stream reader with remote peer","stream-reader-type":"stream Message","local-member-id":"fcfb4c91f4fc885c","remote-peer-id":"87e21aa89889ebe3"} Mar 17 17:22:31 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:31.188-0700","caller":"etcdserver/server.go:834","msg":"starting etcd server","local-member-id":"fcfb4c91f4fc885c","local-server-version":"3.5.1","cluster-id":"d1c8afd71ab75419","cluster-version":"3.5"} Mar 17 17:22:31 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:31.188-0700","caller":"etcdserver/server.go:744","msg":"starting initial election tick advance","election-ticks":10} Mar 17 17:22:31 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:31.190-0700","caller":"embed/etcd.go:687","msg":"starting with client TLS","tls-info":"cert = /var/lib/rancher/k3s/server/tls/etcd/server-client.crt, key = /var/lib/rancher/k3s/server/tls/etcd/server-client.key, client-cert=, client-key=, trusted-ca = /var/lib/rancher/k3s/server/tls/etcd/server-ca.crt, client-cert-auth = true, crl-file = ","cipher-suites":[]} Mar 17 17:22:31 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:31.190-0700","caller":"embed/etcd.go:580","msg":"serving peer traffic","address":"192.168.1.33:2380"} Mar 17 17:22:31 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:31.190-0700","caller":"embed/etcd.go:552","msg":"cmux::serve","address":"192.168.1.33:2380"} Mar 17 17:22:31 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:31.190-0700","caller":"embed/etcd.go:276","msg":"now serving peer/client/metrics","local-member-id":"fcfb4c91f4fc885c","initial-advertise-peer-urls":["http://localhost:2380"],"listen-peer-urls":["https://192.168.1.33:2380"],"advertise-client-urls":["https://192.168.1.33:2379"],"listen-client-urls":["https://127.0.0.1:2379","https://192.168.1.33:2379"],"listen-metrics-urls":["http://127.0.0.1:2381"]} Mar 17 17:22:31 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:31.190-0700","caller":"embed/etcd.go:762","msg":"serving metrics","address":"http://127.0.0.1:2381"} Mar 17 17:22:31 antikythera k3s[22301]: time="2022-03-17T17:22:31-07:00" level=info msg="Running kube-apiserver --advertise-port=6443 --allow-privileged=true --anonymous-auth=false --api-audiences=https://kubernetes.default.svc.cluster.local,k3s --authorization-mode=Node,RBAC --bind-address=127.0.0.1 --cert-dir=/var/lib/rancher/k3s/server/tls/temporary-certs --client-ca-file=/var/lib/rancher/k3s/server/tls/client-ca.crt --enable-admission-plugins=NodeRestriction --etcd-cafile=/var/lib/rancher/k3s/server/tls/etcd/server-ca.crt --etcd-certfile=/var/lib/rancher/k3s/server/tls/etcd/client.crt --etcd-keyfile=/var/lib/rancher/k3s/server/tls/etcd/client.key --etcd-servers=https://127.0.0.1:2379 --feature-gates=JobTrackingWithFinalizers=true --insecure-port=0 --kubelet-certificate-authority=/var/lib/rancher/k3s/server/tls/server-ca.crt --kubelet-client-certificate=/var/lib/rancher/k3s/server/tls/client-kube-apiserver.crt --kubelet-client-key=/var/lib/rancher/k3s/server/tls/client-kube-apiserver.key --profiling=false --proxy-client-cert-file=/var/lib/rancher/k3s/server/tls/client-auth-proxy.crt --proxy-client-key-file=/var/lib/rancher/k3s/server/tls/client-auth-proxy.key --requestheader-allowed-names=system:auth-proxy --requestheader-client-ca-file=/var/lib/rancher/k3s/server/tls/request-header-ca.crt --requestheader-extra-headers-prefix=X-Remote-Extra- --requestheader-group-headers=X-Remote-Group --requestheader-username-headers=X-Remote-User --secure-port=6444 --service-account-issuer=https://kubernetes.default.svc.cluster.local --service-account-key-file=/var/lib/rancher/k3s/server/tls/service.key --service-account-signing-key-file=/var/lib/rancher/k3s/server/tls/service.key --service-cluster-ip-range=10.43.0.0/16 --service-node-port-range=30000-32767 --storage-backend=etcd3 --tls-cert-file=/var/lib/rancher/k3s/server/tls/serving-kube-apiserver.crt --tls-private-key-file=/var/lib/rancher/k3s/server/tls/serving-kube-apiserver.key" Mar 17 17:22:31 antikythera k3s[22301]: time="2022-03-17T17:22:31-07:00" level=info msg="Running kube-scheduler --authentication-kubeconfig=/var/lib/rancher/k3s/server/cred/scheduler.kubeconfig --authorization-kubeconfig=/var/lib/rancher/k3s/server/cred/scheduler.kubeconfig --bind-address=127.0.0.1 --kubeconfig=/var/lib/rancher/k3s/server/cred/scheduler.kubeconfig --profiling=false --secure-port=10259" Mar 17 17:22:31 antikythera k3s[22301]: time="2022-03-17T17:22:31-07:00" level=info msg="Running kube-controller-manager --allocate-node-cidrs=true --authentication-kubeconfig=/var/lib/rancher/k3s/server/cred/controller.kubeconfig --authorization-kubeconfig=/var/lib/rancher/k3s/server/cred/controller.kubeconfig --bind-address=127.0.0.1 --cluster-cidr=10.42.0.0/16 --cluster-signing-kube-apiserver-client-cert-file=/var/lib/rancher/k3s/server/tls/client-ca.crt --cluster-signing-kube-apiserver-client-key-file=/var/lib/rancher/k3s/server/tls/client-ca.key --cluster-signing-kubelet-client-cert-file=/var/lib/rancher/k3s/server/tls/client-ca.crt --cluster-signing-kubelet-client-key-file=/var/lib/rancher/k3s/server/tls/client-ca.key --cluster-signing-kubelet-serving-cert-file=/var/lib/rancher/k3s/server/tls/server-ca.crt --cluster-signing-kubelet-serving-key-file=/var/lib/rancher/k3s/server/tls/server-ca.key --cluster-signing-legacy-unknown-cert-file=/var/lib/rancher/k3s/server/tls/server-ca.crt --cluster-signing-legacy-unknown-key-file=/var/lib/rancher/k3s/server/tls/server-ca.key --configure-cloud-routes=false --controllers=*,-service,-route,-cloud-node-lifecycle --feature-gates=JobTrackingWithFinalizers=true --kubeconfig=/var/lib/rancher/k3s/server/cred/controller.kubeconfig --profiling=false --root-ca-file=/var/lib/rancher/k3s/server/tls/server-ca.crt --secure-port=10257 --service-account-private-key-file=/var/lib/rancher/k3s/server/tls/service.key --use-service-account-credentials=true" Mar 17 17:22:31 antikythera k3s[22301]: time="2022-03-17T17:22:31-07:00" level=info msg="Running cloud-controller-manager --allocate-node-cidrs=true --authentication-kubeconfig=/var/lib/rancher/k3s/server/cred/cloud-controller.kubeconfig --authorization-kubeconfig=/var/lib/rancher/k3s/server/cred/cloud-controller.kubeconfig --bind-address=127.0.0.1 --cloud-provider=k3s --cluster-cidr=10.42.0.0/16 --configure-cloud-routes=false --kubeconfig=/var/lib/rancher/k3s/server/cred/cloud-controller.kubeconfig --node-status-update-frequency=1m0s --port=0 --profiling=false" Mar 17 17:22:31 antikythera k3s[22301]: time="2022-03-17T17:22:31-07:00" level=info msg="Node token is available at /var/lib/rancher/k3s/server/token" Mar 17 17:22:31 antikythera k3s[22301]: time="2022-03-17T17:22:31-07:00" level=info msg="To join node to cluster: k3s agent -s https://192.168.1.33:6443 -t ${NODE_TOKEN}" Mar 17 17:22:31 antikythera k3s[22301]: time="2022-03-17T17:22:31-07:00" level=info msg="Wrote kubeconfig /etc/rancher/k3s/k3s.yaml" Mar 17 17:22:31 antikythera k3s[22301]: time="2022-03-17T17:22:31-07:00" level=info msg="Run: k3s kubectl" Mar 17 17:22:31 antikythera k3s[22301]: time="2022-03-17T17:22:31-07:00" level=info msg="Cluster-Http-Server 2022/03/17 17:22:31 http: TLS handshake error from 127.0.0.1:59112: remote error: tls: bad certificate" Mar 17 17:22:31 antikythera k3s[22301]: time="2022-03-17T17:22:31-07:00" level=info msg="Cluster-Http-Server 2022/03/17 17:22:31 http: TLS handshake error from 127.0.0.1:59118: remote error: tls: bad certificate" Mar 17 17:22:31 antikythera k3s[22301]: time="2022-03-17T17:22:31-07:00" level=debug msg="password verified locally for node 'antikythera'" Mar 17 17:22:31 antikythera k3s[22301]: time="2022-03-17T17:22:31-07:00" level=info msg="certificate CN=antikythera signed by CN=k3s-server-ca@1607286236: notBefore=2020-12-06 20:23:56 +0000 UTC notAfter=2023-03-18 00:22:31 +0000 UTC" Mar 17 17:22:31 antikythera k3s[22301]: time="2022-03-17T17:22:31-07:00" level=debug msg="password verified locally for node 'antikythera'" Mar 17 17:22:31 antikythera k3s[22301]: time="2022-03-17T17:22:31-07:00" level=info msg="certificate CN=system:node:antikythera,O=system:nodes signed by CN=k3s-client-ca@1607286236: notBefore=2020-12-06 20:23:56 +0000 UTC notAfter=2023-03-18 00:22:31 +0000 UTC" Mar 17 17:22:31 antikythera k3s[22301]: time="2022-03-17T17:22:31-07:00" level=info msg="Module overlay was already loaded" Mar 17 17:22:31 antikythera k3s[22301]: time="2022-03-17T17:22:31-07:00" level=info msg="Module nf_conntrack was already loaded" Mar 17 17:22:31 antikythera k3s[22301]: time="2022-03-17T17:22:31-07:00" level=info msg="Module br_netfilter was already loaded" Mar 17 17:22:31 antikythera k3s[22301]: time="2022-03-17T17:22:31-07:00" level=info msg="Module iptable_nat was already loaded" Mar 17 17:22:31 antikythera k3s[22301]: time="2022-03-17T17:22:31-07:00" level=debug msg="getConntrackMax: using scaled conntrack-max-per-core" Mar 17 17:22:31 antikythera k3s[22301]: time="2022-03-17T17:22:31-07:00" level=debug msg="Creating the CNI conf in directory /var/lib/rancher/k3s/agent/etc/cni/net.d" Mar 17 17:22:31 antikythera k3s[22301]: time="2022-03-17T17:22:31-07:00" level=debug msg="Creating the flannel configuration for backend vxlan in file /var/lib/rancher/k3s/agent/etc/flannel/net-conf.json" Mar 17 17:22:31 antikythera k3s[22301]: time="2022-03-17T17:22:31-07:00" level=debug msg="The flannel configuration is {\n\t\"Network\": \"10.42.0.0/16\",\n\t\"EnableIPv6\": false,\n\t\"EnableIPv4\": true,\n\t\"IPv6Network\": \"::/0\",\n\t\"Backend\": {\n\t\"Type\": \"vxlan\"\n}\n}\n" Mar 17 17:22:31 antikythera k3s[22301]: time="2022-03-17T17:22:31-07:00" level=debug msg="Searching for nvidia container runtime at /usr/local/nvidia/toolkit/nvidia-container-runtime" Mar 17 17:22:31 antikythera k3s[22301]: time="2022-03-17T17:22:31-07:00" level=debug msg="nvidia container runtime not found at /usr/local/nvidia/toolkit/nvidia-container-runtime" Mar 17 17:22:31 antikythera k3s[22301]: time="2022-03-17T17:22:31-07:00" level=debug msg="Searching for nvidia container runtime at /usr/bin/nvidia-container-runtime" Mar 17 17:22:31 antikythera k3s[22301]: time="2022-03-17T17:22:31-07:00" level=debug msg="nvidia container runtime not found at /usr/bin/nvidia-container-runtime" Mar 17 17:22:31 antikythera k3s[22301]: time="2022-03-17T17:22:31-07:00" level=debug msg="Searching for nvidia-experimental container runtime at /usr/local/nvidia/toolkit/nvidia-container-runtime-experimental" Mar 17 17:22:31 antikythera k3s[22301]: time="2022-03-17T17:22:31-07:00" level=debug msg="nvidia-experimental container runtime not found at /usr/local/nvidia/toolkit/nvidia-container-runtime-experimental" Mar 17 17:22:31 antikythera k3s[22301]: time="2022-03-17T17:22:31-07:00" level=debug msg="Searching for nvidia-experimental container runtime at /usr/bin/nvidia-container-runtime-experimental" Mar 17 17:22:31 antikythera k3s[22301]: time="2022-03-17T17:22:31-07:00" level=debug msg="nvidia-experimental container runtime not found at /usr/bin/nvidia-container-runtime-experimental" Mar 17 17:22:31 antikythera k3s[22301]: time="2022-03-17T17:22:31-07:00" level=info msg="Running containerd -c /var/lib/rancher/k3s/agent/etc/containerd/config.toml -a /run/k3s/containerd/containerd.sock --state /run/k3s/containerd --root /var/lib/rancher/k3s/agent/containerd" Mar 17 17:22:31 antikythera k3s[22375]: time="2022-03-17T17:22:31-07:00" level=warning msg="deprecated version : `1`, please switch to version `2`" Mar 17 17:22:31 antikythera k3s[22375]: time="2022-03-17T17:22:31.588511262-07:00" level=info msg="starting containerd" revision= version=v1.5.10-k3s1 Mar 17 17:22:31 antikythera k3s[22375]: time="2022-03-17T17:22:31.641474005-07:00" level=info msg="loading plugin \"io.containerd.content.v1.content\"..." type=io.containerd.content.v1 Mar 17 17:22:31 antikythera k3s[22375]: time="2022-03-17T17:22:31.641578499-07:00" level=info msg="loading plugin \"io.containerd.snapshotter.v1.aufs\"..." type=io.containerd.snapshotter.v1 Mar 17 17:22:31 antikythera k3s[22375]: time="2022-03-17T17:22:31.646035012-07:00" level=info msg="skip loading plugin \"io.containerd.snapshotter.v1.aufs\"..." error="aufs is not supported (modprobe aufs failed: exit status 1 \"modprobe: FATAL: Module aufs not found in directory /lib/modules/5.10.0-11-amd64\\n\"): skip plugin" type=io.containerd.snapshotter.v1 Mar 17 17:22:31 antikythera k3s[22375]: time="2022-03-17T17:22:31.646114536-07:00" level=info msg="loading plugin \"io.containerd.snapshotter.v1.btrfs\"..." type=io.containerd.snapshotter.v1 Mar 17 17:22:31 antikythera k3s[22375]: time="2022-03-17T17:22:31.646487597-07:00" level=info msg="skip loading plugin \"io.containerd.snapshotter.v1.btrfs\"..." error="path /var/lib/rancher/k3s/agent/containerd/io.containerd.snapshotter.v1.btrfs (ext4) must be a btrfs filesystem to be used with the btrfs snapshotter: skip plugin" type=io.containerd.snapshotter.v1 Mar 17 17:22:31 antikythera k3s[22375]: time="2022-03-17T17:22:31.646543989-07:00" level=info msg="loading plugin \"io.containerd.snapshotter.v1.devmapper\"..." type=io.containerd.snapshotter.v1 Mar 17 17:22:31 antikythera k3s[22375]: time="2022-03-17T17:22:31.646613796-07:00" level=warning msg="failed to load plugin io.containerd.snapshotter.v1.devmapper" error="devmapper not configured" Mar 17 17:22:31 antikythera k3s[22375]: time="2022-03-17T17:22:31.646650601-07:00" level=info msg="loading plugin \"io.containerd.snapshotter.v1.native\"..." type=io.containerd.snapshotter.v1 Mar 17 17:22:31 antikythera k3s[22375]: time="2022-03-17T17:22:31.646720145-07:00" level=info msg="loading plugin \"io.containerd.snapshotter.v1.overlayfs\"..." type=io.containerd.snapshotter.v1 Mar 17 17:22:31 antikythera k3s[22375]: time="2022-03-17T17:22:31.646994095-07:00" level=info msg="loading plugin \"io.containerd.snapshotter.v1.fuse-overlayfs\"..." type=io.containerd.snapshotter.v1 Mar 17 17:22:31 antikythera k3s[22375]: time="2022-03-17T17:22:31.647070741-07:00" level=info msg="loading plugin \"io.containerd.snapshotter.v1.stargz\"..." type=io.containerd.snapshotter.v1 Mar 17 17:22:31 antikythera k3s[22375]: time="2022-03-17T17:22:31.647829524-07:00" level=info msg="loading plugin \"io.containerd.snapshotter.v1.zfs\"..." type=io.containerd.snapshotter.v1 Mar 17 17:22:31 antikythera k3s[22375]: time="2022-03-17T17:22:31.648152745-07:00" level=info msg="skip loading plugin \"io.containerd.snapshotter.v1.zfs\"..." error="path /var/lib/rancher/k3s/agent/containerd/io.containerd.snapshotter.v1.zfs must be a zfs filesystem to be used with the zfs snapshotter: skip plugin" type=io.containerd.snapshotter.v1 Mar 17 17:22:31 antikythera k3s[22375]: time="2022-03-17T17:22:31.648211844-07:00" level=info msg="loading plugin \"io.containerd.metadata.v1.bolt\"..." type=io.containerd.metadata.v1 Mar 17 17:22:31 antikythera k3s[22375]: time="2022-03-17T17:22:31.648267126-07:00" level=warning msg="could not use snapshotter devmapper in metadata plugin" error="devmapper not configured" Mar 17 17:22:31 antikythera k3s[22375]: time="2022-03-17T17:22:31.648302338-07:00" level=info msg="metadata content store policy set" policy=shared Mar 17 17:22:31 antikythera k3s[22375]: time="2022-03-17T17:22:31.648705985-07:00" level=info msg="loading plugin \"io.containerd.differ.v1.walking\"..." type=io.containerd.differ.v1 Mar 17 17:22:31 antikythera k3s[22375]: time="2022-03-17T17:22:31.648762838-07:00" level=info msg="loading plugin \"io.containerd.gc.v1.scheduler\"..." type=io.containerd.gc.v1 Mar 17 17:22:31 antikythera k3s[22375]: time="2022-03-17T17:22:31.648857418-07:00" level=info msg="loading plugin \"io.containerd.service.v1.introspection-service\"..." type=io.containerd.service.v1 Mar 17 17:22:31 antikythera k3s[22375]: time="2022-03-17T17:22:31.648942659-07:00" level=info msg="loading plugin \"io.containerd.service.v1.containers-service\"..." type=io.containerd.service.v1 Mar 17 17:22:31 antikythera k3s[22375]: time="2022-03-17T17:22:31.648984025-07:00" level=info msg="loading plugin \"io.containerd.service.v1.content-service\"..." type=io.containerd.service.v1 Mar 17 17:22:31 antikythera k3s[22375]: time="2022-03-17T17:22:31.649020846-07:00" level=info msg="loading plugin \"io.containerd.service.v1.diff-service\"..." type=io.containerd.service.v1 Mar 17 17:22:31 antikythera k3s[22375]: time="2022-03-17T17:22:31.649060796-07:00" level=info msg="loading plugin \"io.containerd.service.v1.images-service\"..." type=io.containerd.service.v1 Mar 17 17:22:31 antikythera k3s[22375]: time="2022-03-17T17:22:31.649119099-07:00" level=info msg="loading plugin \"io.containerd.service.v1.leases-service\"..." type=io.containerd.service.v1 Mar 17 17:22:31 antikythera k3s[22375]: time="2022-03-17T17:22:31.649167204-07:00" level=info msg="loading plugin \"io.containerd.service.v1.namespaces-service\"..." type=io.containerd.service.v1 Mar 17 17:22:31 antikythera k3s[22375]: time="2022-03-17T17:22:31.649206916-07:00" level=info msg="loading plugin \"io.containerd.service.v1.snapshots-service\"..." type=io.containerd.service.v1 Mar 17 17:22:31 antikythera k3s[22375]: time="2022-03-17T17:22:31.649252709-07:00" level=info msg="loading plugin \"io.containerd.runtime.v1.linux\"..." type=io.containerd.runtime.v1 Mar 17 17:22:31 antikythera k3s[22375]: time="2022-03-17T17:22:31.649358409-07:00" level=info msg="loading plugin \"io.containerd.runtime.v2.task\"..." type=io.containerd.runtime.v2 Mar 17 17:22:31 antikythera k3s[22375]: time="2022-03-17T17:22:31.649486573-07:00" level=info msg="loading plugin \"io.containerd.monitor.v1.cgroups\"..." type=io.containerd.monitor.v1 Mar 17 17:22:31 antikythera k3s[22375]: time="2022-03-17T17:22:31.650072738-07:00" level=info msg="loading plugin \"io.containerd.service.v1.tasks-service\"..." type=io.containerd.service.v1 Mar 17 17:22:31 antikythera k3s[22375]: time="2022-03-17T17:22:31.650123049-07:00" level=info msg="loading plugin \"io.containerd.internal.v1.restart\"..." type=io.containerd.internal.v1 Mar 17 17:22:31 antikythera k3s[22375]: time="2022-03-17T17:22:31.650209111-07:00" level=info msg="loading plugin \"io.containerd.grpc.v1.containers\"..." type=io.containerd.grpc.v1 Mar 17 17:22:31 antikythera k3s[22375]: time="2022-03-17T17:22:31.650236308-07:00" level=info msg="loading plugin \"io.containerd.grpc.v1.content\"..." type=io.containerd.grpc.v1 Mar 17 17:22:31 antikythera k3s[22375]: time="2022-03-17T17:22:31.650266806-07:00" level=info msg="loading plugin \"io.containerd.grpc.v1.diff\"..." type=io.containerd.grpc.v1 Mar 17 17:22:31 antikythera k3s[22375]: time="2022-03-17T17:22:31.650288648-07:00" level=info msg="loading plugin \"io.containerd.grpc.v1.events\"..." type=io.containerd.grpc.v1 Mar 17 17:22:31 antikythera k3s[22375]: time="2022-03-17T17:22:31.650320408-07:00" level=info msg="loading plugin \"io.containerd.grpc.v1.healthcheck\"..." type=io.containerd.grpc.v1 Mar 17 17:22:31 antikythera k3s[22375]: time="2022-03-17T17:22:31.650343728-07:00" level=info msg="loading plugin \"io.containerd.grpc.v1.images\"..." type=io.containerd.grpc.v1 Mar 17 17:22:31 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:22:31.650-0700","caller":"etcdserver/util.go:123","msg":"failed to apply request","took":"14.402µs","request":"header: txn: success:> failure:<>>","response":"","error":"etcdserver: no space"} Mar 17 17:22:31 antikythera k3s[22375]: time="2022-03-17T17:22:31.650378935-07:00" level=info msg="loading plugin \"io.containerd.grpc.v1.leases\"..." type=io.containerd.grpc.v1 Mar 17 17:22:31 antikythera k3s[22375]: time="2022-03-17T17:22:31.650409987-07:00" level=info msg="loading plugin \"io.containerd.grpc.v1.namespaces\"..." type=io.containerd.grpc.v1 Mar 17 17:22:31 antikythera k3s[22375]: time="2022-03-17T17:22:31.650436587-07:00" level=info msg="loading plugin \"io.containerd.internal.v1.opt\"..." type=io.containerd.internal.v1 Mar 17 17:22:31 antikythera k3s[22375]: time="2022-03-17T17:22:31.650536232-07:00" level=info msg="loading plugin \"io.containerd.grpc.v1.snapshots\"..." type=io.containerd.grpc.v1 Mar 17 17:22:31 antikythera k3s[22375]: time="2022-03-17T17:22:31.650569134-07:00" level=info msg="loading plugin \"io.containerd.grpc.v1.tasks\"..." type=io.containerd.grpc.v1 Mar 17 17:22:31 antikythera k3s[22375]: time="2022-03-17T17:22:31.650598122-07:00" level=info msg="loading plugin \"io.containerd.grpc.v1.version\"..." type=io.containerd.grpc.v1 Mar 17 17:22:31 antikythera k3s[22375]: time="2022-03-17T17:22:31.650620269-07:00" level=info msg="loading plugin \"io.containerd.grpc.v1.cri\"..." type=io.containerd.grpc.v1 Mar 17 17:22:31 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:22:31.650-0700","caller":"etcdserver/util.go:123","msg":"failed to apply request","took":"3.192µs","request":"header: txn: success:> failure:<>>","response":"","error":"etcdserver: no space"} Mar 17 17:22:31 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:22:31.650-0700","caller":"etcdserver/util.go:123","msg":"failed to apply request","took":"3.252µs","request":"header: txn: success:> failure:<>>","response":"","error":"etcdserver: no space"} Mar 17 17:22:31 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:22:31.650-0700","caller":"etcdserver/util.go:123","msg":"failed to apply request","took":"2.993µs","request":"header: txn: success:> failure:<>>","response":"","error":"etcdserver: no space"} Mar 17 17:22:31 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:22:31.651-0700","caller":"etcdserver/util.go:123","msg":"failed to apply request","took":"2.475µs","request":"header: txn: success:> failure:<>>","response":"","error":"etcdserver: no space"} Mar 17 17:22:31 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:22:31.651-0700","caller":"etcdserver/util.go:123","msg":"failed to apply request","took":"2.677µs","request":"header: txn: success:> failure:<>>","response":"","error":"etcdserver: no space"} Mar 17 17:22:31 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:22:31.651-0700","caller":"etcdserver/util.go:123","msg":"failed to apply request","took":"2.02µs","request":"header: txn: success:> failure:<>>","response":"","error":"etcdserver: no space"} Mar 17 17:22:31 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:22:31.651-0700","caller":"etcdserver/util.go:123","msg":"failed to apply request","took":"2.08µs","request":"header: txn: success:> failure:<>>","response":"","error":"etcdserver: no space"} Mar 17 17:22:31 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:22:31.651-0700","caller":"etcdserver/util.go:123","msg":"failed to apply request","took":"1.437µs","request":"header: txn: success:> failure:<>>","response":"","error":"etcdserver: no space"} Mar 17 17:22:31 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:22:31.651-0700","caller":"etcdserver/util.go:123","msg":"failed to apply request","took":"1.487µs","request":"header: txn: success:> failure:<>>","response":"","error":"etcdserver: no space"} Mar 17 17:22:31 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:22:31.651-0700","caller":"etcdserver/util.go:123","msg":"failed to apply request","took":"1.445µs","request":"header: txn: success:> failure:<>>","response":"","error":"etcdserver: no space"} Mar 17 17:22:31 antikythera k3s[22375]: time="2022-03-17T17:22:31.651858890-07:00" level=info msg="Start cri plugin with config {PluginConfig:{ContainerdConfig:{Snapshotter:overlayfs DefaultRuntimeName:runc DefaultRuntime:{Type: Engine: PodAnnotations:[] ContainerAnnotations:[] Root: Options:map[] PrivilegedWithoutHostDevices:false BaseRuntimeSpec:} UntrustedWorkloadRuntime:{Type: Engine: PodAnnotations:[] ContainerAnnotations:[] Root: Options:map[] PrivilegedWithoutHostDevices:false BaseRuntimeSpec:} Runtimes:map[runc:{Type:io.containerd.runc.v2 Engine: PodAnnotations:[] ContainerAnnotations:[] Root: Options:map[] PrivilegedWithoutHostDevices:false BaseRuntimeSpec:}] NoPivot:false DisableSnapshotAnnotations:true DiscardUnpackedLayers:false} CniConfig:{NetworkPluginBinDir:/var/lib/rancher/k3s/data/aae84690209148f4c80a72b2e378ddd57946480899935afb287f056342af375f/bin NetworkPluginConfDir:/var/lib/rancher/k3s/agent/etc/cni/net.d NetworkPluginMaxConfNum:1 NetworkPluginConfTemplate:} Registry:{ConfigPath: Mirrors:map[] Configs:map[] Auths:map[] Headers:map[]} ImageDecryption:{KeyModel:node} DisableTCPService:true StreamServerAddress:127.0.0.1 StreamServerPort:10010 StreamIdleTimeout:4h0m0s EnableSelinux:false SelinuxCategoryRange:1024 SandboxImage:rancher/mirrored-pause:3.6 StatsCollectPeriod:10 SystemdCgroup:false EnableTLSStreaming:false X509KeyPairStreaming:{TLSCertFile: TLSKeyFile:} MaxContainerLogLineSize:16384 DisableCgroup:false DisableApparmor:false RestrictOOMScoreAdj:false MaxConcurrentDownloads:3 DisableProcMount:false UnsetSeccompProfile: TolerateMissingHugetlbController:true DisableHugetlbController:true IgnoreImageDefinedVolumes:false NetNSMountsUnderStateDir:false} ContainerdRootDir:/var/lib/rancher/k3s/agent/containerd ContainerdEndpoint:/run/k3s/containerd/containerd.sock RootDir:/var/lib/rancher/k3s/agent/containerd/io.containerd.grpc.v1.cri StateDir:/run/k3s/containerd/io.containerd.grpc.v1.cri}" Mar 17 17:22:31 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:22:31.651-0700","caller":"etcdserver/util.go:123","msg":"failed to apply request","took":"1.311µs","request":"header: txn: success:> failure:<>>","response":"","error":"etcdserver: no space"} Mar 17 17:22:31 antikythera k3s[22375]: time="2022-03-17T17:22:31.651958485-07:00" level=info msg="Connect containerd service" Mar 17 17:22:31 antikythera k3s[22375]: time="2022-03-17T17:22:31.652023353-07:00" level=info msg="Get image filesystem path \"/var/lib/rancher/k3s/agent/containerd/io.containerd.snapshotter.v1.overlayfs\"" Mar 17 17:22:31 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:22:31.652-0700","caller":"etcdserver/util.go:123","msg":"failed to apply request","took":"1.292µs","request":"header: txn: success:> failure:<>>","response":"","error":"etcdserver: no space"} Mar 17 17:22:31 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:22:31.652-0700","caller":"etcdserver/util.go:123","msg":"failed to apply request","took":"1.59µs","request":"header: txn: success:> failure:<>>","response":"","error":"etcdserver: no space"} Mar 17 17:22:31 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:22:31.652-0700","caller":"etcdserver/util.go:123","msg":"failed to apply request","took":"1.356µs","request":"header: txn: success:> failure:<>>","response":"","error":"etcdserver: no space"} Mar 17 17:22:31 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:22:31.652-0700","caller":"etcdserver/util.go:123","msg":"failed to apply request","took":"1.704µs","request":"header: txn: success:> failure:<>>","response":"","error":"etcdserver: no space"} Mar 17 17:22:31 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:22:31.652-0700","caller":"etcdserver/util.go:123","msg":"failed to apply request","took":"1.285µs","request":"header: txn: success:> failure:<>>","response":"","error":"etcdserver: no space"} Mar 17 17:22:31 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:22:31.652-0700","caller":"etcdserver/util.go:123","msg":"failed to apply request","took":"1.331µs","request":"header: txn: success:> failure:<>>","response":"","error":"etcdserver: no space"} Mar 17 17:22:31 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:22:31.652-0700","caller":"etcdserver/util.go:123","msg":"failed to apply request","took":"1.323µs","request":"header: txn: success:> failure:<>>","response":"","error":"etcdserver: no space"} Mar 17 17:22:31 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:22:31.652-0700","caller":"etcdserver/util.go:123","msg":"failed to apply request","took":"2.427µs","request":"header: txn: success:> failure:<>>","response":"","error":"etcdserver: no space"} Mar 17 17:22:31 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:22:31.652-0700","caller":"etcdserver/util.go:123","msg":"failed to apply request","took":"3.069µs","request":"header: lease_grant:","response":"","error":"etcdserver: no space"} Mar 17 17:22:31 antikythera k3s[22375]: time="2022-03-17T17:22:31.652704997-07:00" level=info msg="loading plugin \"io.containerd.grpc.v1.introspection\"..." type=io.containerd.grpc.v1 Mar 17 17:22:31 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:22:31.652-0700","caller":"etcdserver/util.go:123","msg":"failed to apply request","took":"1.874µs","request":"header: txn: success:> failure:<>>","response":"","error":"etcdserver: no space"} Mar 17 17:22:31 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:22:31.652-0700","caller":"etcdserver/util.go:123","msg":"failed to apply request","took":"2.047µs","request":"header: txn: success:> failure:<>>","response":"","error":"etcdserver: no space"} Mar 17 17:22:31 antikythera k3s[22375]: time="2022-03-17T17:22:31.652809028-07:00" level=info msg="Start subscribing containerd event" Mar 17 17:22:31 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:22:31.652-0700","caller":"etcdserver/util.go:123","msg":"failed to apply request","took":"2.107µs","request":"header: txn: success:> failure:<>>","response":"","error":"etcdserver: no space"} Mar 17 17:22:31 antikythera k3s[22375]: time="2022-03-17T17:22:31.652881611-07:00" level=info msg="Start recovering state" Mar 17 17:22:31 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:22:31.652-0700","caller":"etcdserver/util.go:123","msg":"failed to apply request","took":"2.115µs","request":"header: txn: success:> failure:<>>","response":"","error":"etcdserver: no space"} Mar 17 17:22:31 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:22:31.652-0700","caller":"etcdserver/util.go:123","msg":"failed to apply request","took":"1.931µs","request":"header: txn: success:> failure:<>>","response":"","error":"etcdserver: no space"} Mar 17 17:22:31 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:22:31.652-0700","caller":"etcdserver/util.go:123","msg":"failed to apply request","took":"2.2µs","request":"header: txn: success:> failure:<>>","response":"","error":"etcdserver: no space"} Mar 17 17:22:31 antikythera k3s[22375]: time="2022-03-17T17:22:31.653022060-07:00" level=info msg=serving... address=/run/k3s/containerd/containerd.sock.ttrpc Mar 17 17:22:31 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:22:31.653-0700","caller":"etcdserver/util.go:123","msg":"failed to apply request","took":"2.179µs","request":"header: txn: success:> failure:<>>","response":"","error":"etcdserver: no space"} Mar 17 17:22:31 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:22:31.653-0700","caller":"etcdserver/util.go:123","msg":"failed to apply request","took":"2.231µs","request":"header: txn: success:> failure:<>>","response":"","error":"etcdserver: no space"} Mar 17 17:22:31 antikythera k3s[22375]: time="2022-03-17T17:22:31.653095460-07:00" level=info msg=serving... address=/run/k3s/containerd/containerd.sock Mar 17 17:22:31 antikythera k3s[22375]: time="2022-03-17T17:22:31.653122990-07:00" level=info msg="containerd successfully booted in 0.065305s" Mar 17 17:22:31 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:22:31.653-0700","caller":"etcdserver/util.go:123","msg":"failed to apply request","took":"1.211µs","request":"header: txn: success:> failure:<>>","response":"","error":"etcdserver: no space"} Mar 17 17:22:31 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:22:31.653-0700","caller":"etcdserver/util.go:123","msg":"failed to apply request","took":"1.524µs","request":"header: txn: success:> failure:<>>","response":"","error":"etcdserver: no space"} Mar 17 17:22:31 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:22:31.653-0700","caller":"etcdserver/util.go:123","msg":"failed to apply request","took":"1.989µs","request":"header: txn: success:> failure:<>>","response":"","error":"etcdserver: no space"} Mar 17 17:22:31 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:22:31.653-0700","caller":"etcdserver/util.go:123","msg":"failed to apply request","took":"1.963µs","request":"header: txn: success:> failure:<>>","response":"","error":"etcdserver: no space"} Mar 17 17:22:32 antikythera k3s[22301]: time="2022-03-17T17:22:32-07:00" level=info msg="Waiting for containerd startup: rpc error: code = Unknown desc = server is not initialized yet" Mar 17 17:22:32 antikythera k3s[22375]: time="2022-03-17T17:22:32.795800111-07:00" level=info msg="Start event monitor" Mar 17 17:22:32 antikythera k3s[22375]: time="2022-03-17T17:22:32.795894701-07:00" level=info msg="Start snapshots syncer" Mar 17 17:22:32 antikythera k3s[22375]: time="2022-03-17T17:22:32.795926103-07:00" level=info msg="Start cni network conf syncer" Mar 17 17:22:32 antikythera k3s[22375]: time="2022-03-17T17:22:32.795947662-07:00" level=info msg="Start streaming server" Mar 17 17:22:33 antikythera k3s[22301]: time="2022-03-17T17:22:33-07:00" level=info msg="Containerd is now running" Mar 17 17:22:33 antikythera k3s[22301]: time="2022-03-17T17:22:33-07:00" level=info msg="Connecting to proxy" url="wss://127.0.0.1:6443/v1-k3s/connect" Mar 17 17:22:33 antikythera k3s[22301]: time="2022-03-17T17:22:33-07:00" level=error msg="Failed to connect to proxy" error="websocket: bad handshake" Mar 17 17:22:33 antikythera k3s[22301]: time="2022-03-17T17:22:33-07:00" level=error msg="Remotedialer proxy error" error="websocket: bad handshake" Mar 17 17:22:36 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:22:36.186-0700","caller":"rafthttp/probing_status.go:68","msg":"prober detected unhealthy status","round-tripper-name":"ROUND_TRIPPER_SNAPSHOT","remote-peer-id":"3fdd1f92a3b0a374","rtt":"0s"} Mar 17 17:22:36 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:22:36.186-0700","caller":"rafthttp/probing_status.go:68","msg":"prober detected unhealthy status","round-tripper-name":"ROUND_TRIPPER_RAFT_MESSAGE","remote-peer-id":"3fdd1f92a3b0a374","rtt":"0s"} Mar 17 17:22:36 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:22:36.188-0700","caller":"rafthttp/probing_status.go:68","msg":"prober detected unhealthy status","round-tripper-name":"ROUND_TRIPPER_RAFT_MESSAGE","remote-peer-id":"87e21aa89889ebe3","rtt":"0s","error":"dial tcp 192.168.1.31:2380: connect: connection refused"} Mar 17 17:22:36 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:22:36.188-0700","caller":"rafthttp/probing_status.go:68","msg":"prober detected unhealthy status","round-tripper-name":"ROUND_TRIPPER_SNAPSHOT","remote-peer-id":"87e21aa89889ebe3","rtt":"0s","error":"dial tcp 192.168.1.31:2380: connect: connection refused"} Mar 17 17:22:38 antikythera k3s[22301]: time="2022-03-17T17:22:38-07:00" level=info msg="Connecting to proxy" url="wss://127.0.0.1:6443/v1-k3s/connect" Mar 17 17:22:38 antikythera k3s[22301]: time="2022-03-17T17:22:38-07:00" level=error msg="Failed to connect to proxy" error="websocket: bad handshake" Mar 17 17:22:38 antikythera k3s[22301]: time="2022-03-17T17:22:38-07:00" level=error msg="Remotedialer proxy error" error="websocket: bad handshake" Mar 17 17:22:39 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:39.567-0700","logger":"raft","caller":"etcdserver/zap_raft.go:77","msg":"fcfb4c91f4fc885c is starting a new election at term 68405"} Mar 17 17:22:39 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:39.567-0700","logger":"raft","caller":"etcdserver/zap_raft.go:77","msg":"fcfb4c91f4fc885c became pre-candidate at term 68405"} Mar 17 17:22:39 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:39.567-0700","logger":"raft","caller":"etcdserver/zap_raft.go:77","msg":"fcfb4c91f4fc885c received MsgPreVoteResp from fcfb4c91f4fc885c at term 68405"} Mar 17 17:22:39 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:39.567-0700","logger":"raft","caller":"etcdserver/zap_raft.go:77","msg":"fcfb4c91f4fc885c [logterm: 68405, index: 457073657] sent MsgPreVote request to 3fdd1f92a3b0a374 at term 68405"} Mar 17 17:22:39 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:39.567-0700","logger":"raft","caller":"etcdserver/zap_raft.go:77","msg":"fcfb4c91f4fc885c [logterm: 68405, index: 457073657] sent MsgPreVote request to 87e21aa89889ebe3 at term 68405"} Mar 17 17:22:41 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:22:41.186-0700","caller":"rafthttp/probing_status.go:68","msg":"prober detected unhealthy status","round-tripper-name":"ROUND_TRIPPER_RAFT_MESSAGE","remote-peer-id":"3fdd1f92a3b0a374","rtt":"0s","error":"dial tcp 192.168.1.62:2380: connect: no route to host"} Mar 17 17:22:41 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:22:41.186-0700","caller":"rafthttp/probing_status.go:68","msg":"prober detected unhealthy status","round-tripper-name":"ROUND_TRIPPER_SNAPSHOT","remote-peer-id":"3fdd1f92a3b0a374","rtt":"0s","error":"dial tcp 192.168.1.62:2380: connect: no route to host"} Mar 17 17:22:41 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:22:41.189-0700","caller":"rafthttp/probing_status.go:68","msg":"prober detected unhealthy status","round-tripper-name":"ROUND_TRIPPER_RAFT_MESSAGE","remote-peer-id":"87e21aa89889ebe3","rtt":"0s","error":"dial tcp 192.168.1.31:2380: connect: connection refused"} Mar 17 17:22:41 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:22:41.189-0700","caller":"rafthttp/probing_status.go:68","msg":"prober detected unhealthy status","round-tripper-name":"ROUND_TRIPPER_SNAPSHOT","remote-peer-id":"87e21aa89889ebe3","rtt":"0s","error":"dial tcp 192.168.1.31:2380: connect: connection refused"} Mar 17 17:22:41 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:22:41.190-0700","logger":"etcd-client","caller":"v3@v3.5.1-k3s1/retry_interceptor.go:62","msg":"retrying of unary invoker failed","target":"etcd-endpoints://0xc000ab3c00/127.0.0.1:2379","attempt":0,"error":"rpc error: code = DeadlineExceeded desc = context deadline exceeded"} Mar 17 17:22:41 antikythera k3s[22301]: time="2022-03-17T17:22:41-07:00" level=info msg="Failed to test data store connection: context deadline exceeded" Mar 17 17:22:43 antikythera k3s[22301]: time="2022-03-17T17:22:43-07:00" level=info msg="Connecting to proxy" url="wss://127.0.0.1:6443/v1-k3s/connect" Mar 17 17:22:43 antikythera k3s[22301]: time="2022-03-17T17:22:43-07:00" level=error msg="Failed to connect to proxy" error="websocket: bad handshake" Mar 17 17:22:43 antikythera k3s[22301]: time="2022-03-17T17:22:43-07:00" level=error msg="Remotedialer proxy error" error="websocket: bad handshake" Mar 17 17:22:46 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:22:46.187-0700","caller":"rafthttp/probing_status.go:68","msg":"prober detected unhealthy status","round-tripper-name":"ROUND_TRIPPER_RAFT_MESSAGE","remote-peer-id":"3fdd1f92a3b0a374","rtt":"0s","error":"dial tcp 192.168.1.62:2380: connect: no route to host"} Mar 17 17:22:46 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:22:46.187-0700","caller":"rafthttp/probing_status.go:68","msg":"prober detected unhealthy status","round-tripper-name":"ROUND_TRIPPER_SNAPSHOT","remote-peer-id":"3fdd1f92a3b0a374","rtt":"0s","error":"dial tcp 192.168.1.62:2380: connect: no route to host"} Mar 17 17:22:46 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:22:46.189-0700","caller":"etcdserver/server.go:2050","msg":"failed to publish local member to cluster through raft","local-member-id":"fcfb4c91f4fc885c","local-member-attributes":"{Name:antikythera-0948c62a ClientURLs:[https://192.168.1.33:2379]}","request-path":"/0/members/fcfb4c91f4fc885c/attributes","publish-timeout":"15s","error":"etcdserver: request timed out"} Mar 17 17:22:46 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:22:46.189-0700","caller":"rafthttp/probing_status.go:68","msg":"prober detected unhealthy status","round-tripper-name":"ROUND_TRIPPER_RAFT_MESSAGE","remote-peer-id":"87e21aa89889ebe3","rtt":"0s","error":"dial tcp 192.168.1.31:2380: connect: connection refused"} Mar 17 17:22:46 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:22:46.189-0700","caller":"rafthttp/probing_status.go:68","msg":"prober detected unhealthy status","round-tripper-name":"ROUND_TRIPPER_SNAPSHOT","remote-peer-id":"87e21aa89889ebe3","rtt":"0s","error":"dial tcp 192.168.1.31:2380: connect: connection refused"} Mar 17 17:22:48 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:48.067-0700","logger":"raft","caller":"etcdserver/zap_raft.go:77","msg":"fcfb4c91f4fc885c is starting a new election at term 68405"} Mar 17 17:22:48 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:48.067-0700","logger":"raft","caller":"etcdserver/zap_raft.go:77","msg":"fcfb4c91f4fc885c became pre-candidate at term 68405"} Mar 17 17:22:48 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:48.067-0700","logger":"raft","caller":"etcdserver/zap_raft.go:77","msg":"fcfb4c91f4fc885c received MsgPreVoteResp from fcfb4c91f4fc885c at term 68405"} Mar 17 17:22:48 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:48.067-0700","logger":"raft","caller":"etcdserver/zap_raft.go:77","msg":"fcfb4c91f4fc885c [logterm: 68405, index: 457073657] sent MsgPreVote request to 3fdd1f92a3b0a374 at term 68405"} Mar 17 17:22:48 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:48.067-0700","logger":"raft","caller":"etcdserver/zap_raft.go:77","msg":"fcfb4c91f4fc885c [logterm: 68405, index: 457073657] sent MsgPreVote request to 87e21aa89889ebe3 at term 68405"} Mar 17 17:22:48 antikythera k3s[22301]: time="2022-03-17T17:22:48-07:00" level=info msg="Connecting to proxy" url="wss://127.0.0.1:6443/v1-k3s/connect" Mar 17 17:22:48 antikythera k3s[22301]: time="2022-03-17T17:22:48-07:00" level=error msg="Failed to connect to proxy" error="websocket: bad handshake" Mar 17 17:22:48 antikythera k3s[22301]: time="2022-03-17T17:22:48-07:00" level=error msg="Remotedialer proxy error" error="websocket: bad handshake" Mar 17 17:22:51 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:22:51.187-0700","caller":"rafthttp/probing_status.go:68","msg":"prober detected unhealthy status","round-tripper-name":"ROUND_TRIPPER_RAFT_MESSAGE","remote-peer-id":"3fdd1f92a3b0a374","rtt":"0s","error":"dial tcp 192.168.1.62:2380: connect: no route to host"} Mar 17 17:22:51 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:22:51.187-0700","caller":"rafthttp/probing_status.go:68","msg":"prober detected unhealthy status","round-tripper-name":"ROUND_TRIPPER_SNAPSHOT","remote-peer-id":"3fdd1f92a3b0a374","rtt":"0s","error":"dial tcp 192.168.1.62:2380: connect: no route to host"} Mar 17 17:22:51 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:22:51.189-0700","caller":"rafthttp/probing_status.go:68","msg":"prober detected unhealthy status","round-tripper-name":"ROUND_TRIPPER_SNAPSHOT","remote-peer-id":"87e21aa89889ebe3","rtt":"0s","error":"dial tcp 192.168.1.31:2380: connect: connection refused"} Mar 17 17:22:51 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:22:51.189-0700","caller":"rafthttp/probing_status.go:68","msg":"prober detected unhealthy status","round-tripper-name":"ROUND_TRIPPER_RAFT_MESSAGE","remote-peer-id":"87e21aa89889ebe3","rtt":"0s","error":"dial tcp 192.168.1.31:2380: connect: connection refused"} Mar 17 17:22:53 antikythera k3s[22301]: time="2022-03-17T17:22:53-07:00" level=info msg="Connecting to proxy" url="wss://127.0.0.1:6443/v1-k3s/connect" Mar 17 17:22:53 antikythera k3s[22301]: time="2022-03-17T17:22:53-07:00" level=error msg="Failed to connect to proxy" error="websocket: bad handshake" Mar 17 17:22:53 antikythera k3s[22301]: time="2022-03-17T17:22:53-07:00" level=error msg="Remotedialer proxy error" error="websocket: bad handshake" Mar 17 17:22:56 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:22:56.187-0700","caller":"rafthttp/probing_status.go:68","msg":"prober detected unhealthy status","round-tripper-name":"ROUND_TRIPPER_RAFT_MESSAGE","remote-peer-id":"3fdd1f92a3b0a374","rtt":"0s","error":"dial tcp 192.168.1.62:2380: connect: no route to host"} Mar 17 17:22:56 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:22:56.187-0700","caller":"rafthttp/probing_status.go:68","msg":"prober detected unhealthy status","round-tripper-name":"ROUND_TRIPPER_SNAPSHOT","remote-peer-id":"3fdd1f92a3b0a374","rtt":"0s","error":"dial tcp 192.168.1.62:2380: connect: no route to host"} Mar 17 17:22:56 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:22:56.189-0700","caller":"rafthttp/probing_status.go:68","msg":"prober detected unhealthy status","round-tripper-name":"ROUND_TRIPPER_SNAPSHOT","remote-peer-id":"87e21aa89889ebe3","rtt":"0s","error":"dial tcp 192.168.1.31:2380: connect: connection refused"} Mar 17 17:22:56 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:22:56.189-0700","caller":"rafthttp/probing_status.go:68","msg":"prober detected unhealthy status","round-tripper-name":"ROUND_TRIPPER_RAFT_MESSAGE","remote-peer-id":"87e21aa89889ebe3","rtt":"0s","error":"dial tcp 192.168.1.31:2380: connect: connection refused"} Mar 17 17:22:56 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:22:56.191-0700","logger":"etcd-client","caller":"v3@v3.5.1-k3s1/retry_interceptor.go:62","msg":"retrying of unary invoker failed","target":"etcd-endpoints://0xc000ab3c00/127.0.0.1:2379","attempt":0,"error":"rpc error: code = DeadlineExceeded desc = context deadline exceeded"} Mar 17 17:22:56 antikythera k3s[22301]: time="2022-03-17T17:22:56-07:00" level=info msg="Failed to test data store connection: context deadline exceeded" Mar 17 17:22:56 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:56.567-0700","logger":"raft","caller":"etcdserver/zap_raft.go:77","msg":"fcfb4c91f4fc885c is starting a new election at term 68405"} Mar 17 17:22:56 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:56.567-0700","logger":"raft","caller":"etcdserver/zap_raft.go:77","msg":"fcfb4c91f4fc885c became pre-candidate at term 68405"} Mar 17 17:22:56 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:56.567-0700","logger":"raft","caller":"etcdserver/zap_raft.go:77","msg":"fcfb4c91f4fc885c received MsgPreVoteResp from fcfb4c91f4fc885c at term 68405"} Mar 17 17:22:56 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:56.567-0700","logger":"raft","caller":"etcdserver/zap_raft.go:77","msg":"fcfb4c91f4fc885c [logterm: 68405, index: 457073657] sent MsgPreVote request to 3fdd1f92a3b0a374 at term 68405"} Mar 17 17:22:56 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:56.567-0700","logger":"raft","caller":"etcdserver/zap_raft.go:77","msg":"fcfb4c91f4fc885c [logterm: 68405, index: 457073657] sent MsgPreVote request to 87e21aa89889ebe3 at term 68405"} Mar 17 17:22:58 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:22:58.571-0700","logger":"etcd-client","caller":"v3@v3.5.1-k3s1/retry_interceptor.go:62","msg":"retrying of unary invoker failed","target":"etcd-endpoints://0xc000ab3c00/127.0.0.1:2379","attempt":0,"error":"rpc error: code = DeadlineExceeded desc = context deadline exceeded"} Mar 17 17:22:58 antikythera k3s[22301]: time="2022-03-17T17:22:58-07:00" level=error msg="Failed to check local etcd status for learner management: context deadline exceeded" Mar 17 17:22:58 antikythera k3s[22301]: time="2022-03-17T17:22:58-07:00" level=info msg="Connecting to proxy" url="wss://127.0.0.1:6443/v1-k3s/connect" Mar 17 17:22:58 antikythera k3s[22301]: time="2022-03-17T17:22:58-07:00" level=error msg="Failed to connect to proxy" error="websocket: bad handshake" Mar 17 17:22:58 antikythera k3s[22301]: time="2022-03-17T17:22:58-07:00" level=error msg="Remotedialer proxy error" error="websocket: bad handshake" Mar 17 17:23:01 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:23:01.187-0700","caller":"rafthttp/probing_status.go:68","msg":"prober detected unhealthy status","round-tripper-name":"ROUND_TRIPPER_RAFT_MESSAGE","remote-peer-id":"3fdd1f92a3b0a374","rtt":"0s","error":"dial tcp 192.168.1.62:2380: connect: no route to host"} Mar 17 17:23:01 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:23:01.187-0700","caller":"rafthttp/probing_status.go:68","msg":"prober detected unhealthy status","round-tripper-name":"ROUND_TRIPPER_SNAPSHOT","remote-peer-id":"3fdd1f92a3b0a374","rtt":"0s","error":"dial tcp 192.168.1.62:2380: connect: no route to host"} Mar 17 17:23:01 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:23:01.189-0700","caller":"etcdserver/server.go:2050","msg":"failed to publish local member to cluster through raft","local-member-id":"fcfb4c91f4fc885c","local-member-attributes":"{Name:antikythera-0948c62a ClientURLs:[https://192.168.1.33:2379]}","request-path":"/0/members/fcfb4c91f4fc885c/attributes","publish-timeout":"15s","error":"etcdserver: request timed out"} Mar 17 17:23:01 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:23:01.190-0700","caller":"rafthttp/probing_status.go:68","msg":"prober detected unhealthy status","round-tripper-name":"ROUND_TRIPPER_RAFT_MESSAGE","remote-peer-id":"87e21aa89889ebe3","rtt":"0s","error":"dial tcp 192.168.1.31:2380: connect: connection refused"} Mar 17 17:23:01 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:23:01.190-0700","caller":"rafthttp/probing_status.go:68","msg":"prober detected unhealthy status","round-tripper-name":"ROUND_TRIPPER_SNAPSHOT","remote-peer-id":"87e21aa89889ebe3","rtt":"0s","error":"dial tcp 192.168.1.31:2380: connect: connection refused"} Mar 17 17:23:01 antikythera k3s[22301]: time="2022-03-17T17:23:01-07:00" level=info msg="Waiting for etcd server to become available" Mar 17 17:23:01 antikythera k3s[22301]: time="2022-03-17T17:23:01-07:00" level=info msg="Waiting for API server to become available" Mar 17 17:23:03 antikythera k3s[22301]: time="2022-03-17T17:23:03-07:00" level=info msg="Connecting to proxy" url="wss://127.0.0.1:6443/v1-k3s/connect" Mar 17 17:23:03 antikythera k3s[22301]: time="2022-03-17T17:23:03-07:00" level=error msg="Failed to connect to proxy" error="websocket: bad handshake" Mar 17 17:23:03 antikythera k3s[22301]: time="2022-03-17T17:23:03-07:00" level=error msg="Remotedialer proxy error" error="websocket: bad handshake" Mar 17 17:23:05 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:23:05.067-0700","logger":"raft","caller":"etcdserver/zap_raft.go:77","msg":"fcfb4c91f4fc885c is starting a new election at term 68405"} Mar 17 17:23:05 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:23:05.067-0700","logger":"raft","caller":"etcdserver/zap_raft.go:77","msg":"fcfb4c91f4fc885c became pre-candidate at term 68405"} Mar 17 17:23:05 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:23:05.067-0700","logger":"raft","caller":"etcdserver/zap_raft.go:77","msg":"fcfb4c91f4fc885c received MsgPreVoteResp from fcfb4c91f4fc885c at term 68405"} Mar 17 17:23:05 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:23:05.067-0700","logger":"raft","caller":"etcdserver/zap_raft.go:77","msg":"fcfb4c91f4fc885c [logterm: 68405, index: 457073657] sent MsgPreVote request to 3fdd1f92a3b0a374 at term 68405"} Mar 17 17:23:05 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:23:05.067-0700","logger":"raft","caller":"etcdserver/zap_raft.go:77","msg":"fcfb4c91f4fc885c [logterm: 68405, index: 457073657] sent MsgPreVote request to 87e21aa89889ebe3 at term 68405"} Mar 17 17:23:06 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:23:06.187-0700","caller":"rafthttp/probing_status.go:68","msg":"prober detected unhealthy status","round-tripper-name":"ROUND_TRIPPER_SNAPSHOT","remote-peer-id":"3fdd1f92a3b0a374","rtt":"0s","error":"dial tcp 192.168.1.62:2380: connect: no route to host"} Mar 17 17:23:06 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:23:06.187-0700","caller":"rafthttp/probing_status.go:68","msg":"prober detected unhealthy status","round-tripper-name":"ROUND_TRIPPER_RAFT_MESSAGE","remote-peer-id":"3fdd1f92a3b0a374","rtt":"0s","error":"dial tcp 192.168.1.62:2380: connect: no route to host"} Mar 17 17:23:06 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:23:06.190-0700","caller":"rafthttp/probing_status.go:68","msg":"prober detected unhealthy status","round-tripper-name":"ROUND_TRIPPER_SNAPSHOT","remote-peer-id":"87e21aa89889ebe3","rtt":"0s","error":"dial tcp 192.168.1.31:2380: connect: connection refused"} Mar 17 17:23:06 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:23:06.190-0700","caller":"rafthttp/probing_status.go:68","msg":"prober detected unhealthy status","round-tripper-name":"ROUND_TRIPPER_RAFT_MESSAGE","remote-peer-id":"87e21aa89889ebe3","rtt":"0s","error":"dial tcp 192.168.1.31:2380: connect: connection refused"} Mar 17 17:23:08 antikythera k3s[22301]: time="2022-03-17T17:23:08-07:00" level=info msg="Connecting to proxy" url="wss://127.0.0.1:6443/v1-k3s/connect" Mar 17 17:23:08 antikythera k3s[22301]: time="2022-03-17T17:23:08-07:00" level=error msg="Failed to connect to proxy" error="websocket: bad handshake" Mar 17 17:23:08 antikythera k3s[22301]: time="2022-03-17T17:23:08-07:00" level=error msg="Remotedialer proxy error" error="websocket: bad handshake" Mar 17 17:23:11 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:23:11.188-0700","caller":"rafthttp/probing_status.go:68","msg":"prober detected unhealthy status","round-tripper-name":"ROUND_TRIPPER_RAFT_MESSAGE","remote-peer-id":"3fdd1f92a3b0a374","rtt":"0s","error":"dial tcp 192.168.1.62:2380: connect: no route to host"} Mar 17 17:23:11 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:23:11.188-0700","caller":"rafthttp/probing_status.go:68","msg":"prober detected unhealthy status","round-tripper-name":"ROUND_TRIPPER_SNAPSHOT","remote-peer-id":"3fdd1f92a3b0a374","rtt":"0s","error":"dial tcp 192.168.1.62:2380: connect: no route to host"} Mar 17 17:23:11 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:23:11.190-0700","caller":"rafthttp/probing_status.go:68","msg":"prober detected unhealthy status","round-tripper-name":"ROUND_TRIPPER_SNAPSHOT","remote-peer-id":"87e21aa89889ebe3","rtt":"0s","error":"dial tcp 192.168.1.31:2380: connect: connection refused"} Mar 17 17:23:11 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:23:11.192-0700","caller":"rafthttp/probing_status.go:68","msg":"prober detected unhealthy status","round-tripper-name":"ROUND_TRIPPER_RAFT_MESSAGE","remote-peer-id":"87e21aa89889ebe3","rtt":"0s","error":"dial tcp 192.168.1.31:2380: connect: connection refused"} Mar 17 17:23:11 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:23:11.192-0700","logger":"etcd-client","caller":"v3@v3.5.1-k3s1/retry_interceptor.go:62","msg":"retrying of unary invoker failed","target":"etcd-endpoints://0xc000ab3c00/127.0.0.1:2379","attempt":0,"error":"rpc error: code = DeadlineExceeded desc = context deadline exceeded"} Mar 17 17:23:11 antikythera k3s[22301]: time="2022-03-17T17:23:11-07:00" level=info msg="Failed to test data store connection: context deadline exceeded" Mar 17 17:23:13 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:23:13.567-0700","logger":"raft","caller":"etcdserver/zap_raft.go:77","msg":"fcfb4c91f4fc885c is starting a new election at term 68405"} Mar 17 17:23:13 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:23:13.567-0700","logger":"raft","caller":"etcdserver/zap_raft.go:77","msg":"fcfb4c91f4fc885c became pre-candidate at term 68405"} Mar 17 17:23:13 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:23:13.567-0700","logger":"raft","caller":"etcdserver/zap_raft.go:77","msg":"fcfb4c91f4fc885c received MsgPreVoteResp from fcfb4c91f4fc885c at term 68405"} Mar 17 17:23:13 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:23:13.567-0700","logger":"raft","caller":"etcdserver/zap_raft.go:77","msg":"fcfb4c91f4fc885c [logterm: 68405, index: 457073657] sent MsgPreVote request to 3fdd1f92a3b0a374 at term 68405"} Mar 17 17:23:13 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:23:13.567-0700","logger":"raft","caller":"etcdserver/zap_raft.go:77","msg":"fcfb4c91f4fc885c [logterm: 68405, index: 457073657] sent MsgPreVote request to 87e21aa89889ebe3 at term 68405"} Mar 17 17:23:13 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:23:13.572-0700","logger":"etcd-client","caller":"v3@v3.5.1-k3s1/retry_interceptor.go:62","msg":"retrying of unary invoker failed","target":"etcd-endpoints://0xc000ab3c00/127.0.0.1:2379","attempt":0,"error":"rpc error: code = DeadlineExceeded desc = context deadline exceeded"} Mar 17 17:23:13 antikythera k3s[22301]: time="2022-03-17T17:23:13-07:00" level=error msg="Failed to check local etcd status for learner management: context deadline exceeded" Mar 17 17:23:13 antikythera k3s[22301]: time="2022-03-17T17:23:13-07:00" level=info msg="Connecting to proxy" url="wss://127.0.0.1:6443/v1-k3s/connect" Mar 17 17:23:13 antikythera k3s[22301]: time="2022-03-17T17:23:13-07:00" level=error msg="Failed to connect to proxy" error="websocket: bad handshake" Mar 17 17:23:13 antikythera k3s[22301]: time="2022-03-17T17:23:13-07:00" level=error msg="Remotedialer proxy error" error="websocket: bad handshake" Mar 17 17:23:16 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:23:16.189-0700","caller":"rafthttp/probing_status.go:68","msg":"prober detected unhealthy status","round-tripper-name":"ROUND_TRIPPER_RAFT_MESSAGE","remote-peer-id":"3fdd1f92a3b0a374","rtt":"0s","error":"dial tcp 192.168.1.62:2380: connect: no route to host"} Mar 17 17:23:16 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:23:16.189-0700","caller":"rafthttp/probing_status.go:68","msg":"prober detected unhealthy status","round-tripper-name":"ROUND_TRIPPER_SNAPSHOT","remote-peer-id":"3fdd1f92a3b0a374","rtt":"0s","error":"dial tcp 192.168.1.62:2380: connect: no route to host"} Mar 17 17:23:16 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:23:16.189-0700","caller":"etcdserver/server.go:2050","msg":"failed to publish local member to cluster through raft","local-member-id":"fcfb4c91f4fc885c","local-member-attributes":"{Name:antikythera-0948c62a ClientURLs:[https://192.168.1.33:2379]}","request-path":"/0/members/fcfb4c91f4fc885c/attributes","publish-timeout":"15s","error":"etcdserver: request timed out"} Mar 17 17:23:16 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:23:16.190-0700","caller":"rafthttp/probing_status.go:68","msg":"prober detected unhealthy status","round-tripper-name":"ROUND_TRIPPER_SNAPSHOT","remote-peer-id":"87e21aa89889ebe3","rtt":"0s","error":"dial tcp 192.168.1.31:2380: connect: connection refused"} Mar 17 17:23:16 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:23:16.193-0700","caller":"rafthttp/probing_status.go:68","msg":"prober detected unhealthy status","round-tripper-name":"ROUND_TRIPPER_RAFT_MESSAGE","remote-peer-id":"87e21aa89889ebe3","rtt":"0s","error":"dial tcp 192.168.1.31:2380: connect: connection refused"} Mar 17 17:23:18 antikythera k3s[22301]: time="2022-03-17T17:23:18-07:00" level=info msg="Connecting to proxy" url="wss://127.0.0.1:6443/v1-k3s/connect" Mar 17 17:23:18 antikythera k3s[22301]: time="2022-03-17T17:23:18-07:00" level=error msg="Failed to connect to proxy" error="websocket: bad handshake" Mar 17 17:23:18 antikythera k3s[22301]: time="2022-03-17T17:23:18-07:00" level=error msg="Remotedialer proxy error" error="websocket: bad handshake" Mar 17 17:23:21 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:23:21.189-0700","caller":"rafthttp/probing_status.go:68","msg":"prober detected unhealthy status","round-tripper-name":"ROUND_TRIPPER_RAFT_MESSAGE","remote-peer-id":"3fdd1f92a3b0a374","rtt":"0s","error":"dial tcp 192.168.1.62:2380: connect: no route to host"} Mar 17 17:23:21 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:23:21.189-0700","caller":"rafthttp/probing_status.go:68","msg":"prober detected unhealthy status","round-tripper-name":"ROUND_TRIPPER_SNAPSHOT","remote-peer-id":"3fdd1f92a3b0a374","rtt":"0s","error":"dial tcp 192.168.1.62:2380: connect: no route to host"} Mar 17 17:23:21 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:23:21.190-0700","caller":"rafthttp/probing_status.go:68","msg":"prober detected unhealthy status","round-tripper-name":"ROUND_TRIPPER_SNAPSHOT","remote-peer-id":"87e21aa89889ebe3","rtt":"0s","error":"dial tcp 192.168.1.31:2380: connect: connection refused"} Mar 17 17:23:21 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:23:21.194-0700","caller":"rafthttp/probing_status.go:68","msg":"prober detected unhealthy status","round-tripper-name":"ROUND_TRIPPER_RAFT_MESSAGE","remote-peer-id":"87e21aa89889ebe3","rtt":"0s","error":"dial tcp 192.168.1.31:2380: connect: connection refused"} Mar 17 17:23:22 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:23:22.067-0700","logger":"raft","caller":"etcdserver/zap_raft.go:77","msg":"fcfb4c91f4fc885c is starting a new election at term 68405"} Mar 17 17:23:22 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:23:22.067-0700","logger":"raft","caller":"etcdserver/zap_raft.go:77","msg":"fcfb4c91f4fc885c became pre-candidate at term 68405"} Mar 17 17:23:22 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:23:22.067-0700","logger":"raft","caller":"etcdserver/zap_raft.go:77","msg":"fcfb4c91f4fc885c received MsgPreVoteResp from fcfb4c91f4fc885c at term 68405"} Mar 17 17:23:22 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:23:22.067-0700","logger":"raft","caller":"etcdserver/zap_raft.go:77","msg":"fcfb4c91f4fc885c [logterm: 68405, index: 457073657] sent MsgPreVote request to 3fdd1f92a3b0a374 at term 68405"} Mar 17 17:23:22 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:23:22.067-0700","logger":"raft","caller":"etcdserver/zap_raft.go:77","msg":"fcfb4c91f4fc885c [logterm: 68405, index: 457073657] sent MsgPreVote request to 87e21aa89889ebe3 at term 68405"} Mar 17 17:23:23 antikythera k3s[22301]: time="2022-03-17T17:23:23-07:00" level=info msg="Connecting to proxy" url="wss://127.0.0.1:6443/v1-k3s/connect" Mar 17 17:23:23 antikythera k3s[22301]: time="2022-03-17T17:23:23-07:00" level=error msg="Failed to connect to proxy" error="websocket: bad handshake" Mar 17 17:23:23 antikythera k3s[22301]: time="2022-03-17T17:23:23-07:00" level=error msg="Remotedialer proxy error" error="websocket: bad handshake" Mar 17 17:23:26 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:23:26.190-0700","caller":"rafthttp/probing_status.go:68","msg":"prober detected unhealthy status","round-tripper-name":"ROUND_TRIPPER_SNAPSHOT","remote-peer-id":"3fdd1f92a3b0a374","rtt":"0s","error":"dial tcp 192.168.1.62:2380: connect: no route to host"} Mar 17 17:23:26 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:23:26.190-0700","caller":"rafthttp/probing_status.go:68","msg":"prober detected unhealthy status","round-tripper-name":"ROUND_TRIPPER_RAFT_MESSAGE","remote-peer-id":"3fdd1f92a3b0a374","rtt":"0s","error":"dial tcp 192.168.1.62:2380: connect: no route to host"} Mar 17 17:23:26 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:23:26.191-0700","caller":"rafthttp/probing_status.go:68","msg":"prober detected unhealthy status","round-tripper-name":"ROUND_TRIPPER_SNAPSHOT","remote-peer-id":"87e21aa89889ebe3","rtt":"0s","error":"dial tcp 192.168.1.31:2380: connect: connection refused"} Mar 17 17:23:26 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:23:26.193-0700","logger":"etcd-client","caller":"v3@v3.5.1-k3s1/retry_interceptor.go:62","msg":"retrying of unary invoker failed","target":"etcd-endpoints://0xc000ab3c00/127.0.0.1:2379","attempt":0,"error":"rpc error: code = DeadlineExceeded desc = context deadline exceeded"} Mar 17 17:23:26 antikythera k3s[22301]: time="2022-03-17T17:23:26-07:00" level=info msg="Failed to test data store connection: context deadline exceeded" Mar 17 17:23:26 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:23:26.195-0700","caller":"rafthttp/probing_status.go:68","msg":"prober detected unhealthy status","round-tripper-name":"ROUND_TRIPPER_RAFT_MESSAGE","remote-peer-id":"87e21aa89889ebe3","rtt":"0s","error":"dial tcp 192.168.1.31:2380: connect: connection refused"} Mar 17 17:23:28 antikythera k3s[22301]: time="2022-03-17T17:23:28-07:00" level=info msg="Cluster-Http-Server 2022/03/17 17:23:28 http: TLS handshake error from 192.168.1.31:41424: remote error: tls: bad certificate" Mar 17 17:23:28 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:23:28.571-0700","logger":"etcd-client","caller":"v3@v3.5.1-k3s1/retry_interceptor.go:62","msg":"retrying of unary invoker failed","target":"etcd-endpoints://0xc000ab3c00/127.0.0.1:2379","attempt":0,"error":"rpc error: code = DeadlineExceeded desc = context deadline exceeded"} Mar 17 17:23:28 antikythera k3s[22301]: time="2022-03-17T17:23:28-07:00" level=error msg="Failed to check local etcd status for learner management: context deadline exceeded" Mar 17 17:23:28 antikythera k3s[22301]: time="2022-03-17T17:23:28-07:00" level=info msg="Connecting to proxy" url="wss://127.0.0.1:6443/v1-k3s/connect" Mar 17 17:23:28 antikythera k3s[22301]: time="2022-03-17T17:23:28-07:00" level=error msg="Failed to connect to proxy" error="websocket: bad handshake" Mar 17 17:23:28 antikythera k3s[22301]: time="2022-03-17T17:23:28-07:00" level=error msg="Remotedialer proxy error" error="websocket: bad handshake" Mar 17 17:23:28 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:23:28.856-0700","caller":"rafthttp/peer_status.go:53","msg":"peer became active","peer-id":"87e21aa89889ebe3"} Mar 17 17:23:28 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:23:28.856-0700","caller":"rafthttp/stream.go:412","msg":"established TCP streaming connection with remote peer","stream-reader-type":"stream Message","local-member-id":"fcfb4c91f4fc885c","remote-peer-id":"87e21aa89889ebe3"} Mar 17 17:23:28 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:23:28.856-0700","caller":"rafthttp/stream.go:412","msg":"established TCP streaming connection with remote peer","stream-reader-type":"stream MsgApp v2","local-member-id":"fcfb4c91f4fc885c","remote-peer-id":"87e21aa89889ebe3"} Mar 17 17:23:28 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:23:28.858-0700","caller":"rafthttp/stream.go:249","msg":"set message encoder","from":"fcfb4c91f4fc885c","to":"87e21aa89889ebe3","stream-type":"stream Message"} Mar 17 17:23:28 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:23:28.858-0700","caller":"rafthttp/stream.go:274","msg":"established TCP streaming connection with remote peer","stream-writer-type":"stream Message","local-member-id":"fcfb4c91f4fc885c","remote-peer-id":"87e21aa89889ebe3"} Mar 17 17:23:28 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:23:28.858-0700","caller":"rafthttp/stream.go:249","msg":"set message encoder","from":"fcfb4c91f4fc885c","to":"87e21aa89889ebe3","stream-type":"stream MsgApp v2"} Mar 17 17:23:28 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:23:28.858-0700","caller":"rafthttp/stream.go:274","msg":"established TCP streaming connection with remote peer","stream-writer-type":"stream MsgApp v2","local-member-id":"fcfb4c91f4fc885c","remote-peer-id":"87e21aa89889ebe3"} Mar 17 17:23:30 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:23:30.567-0700","logger":"raft","caller":"etcdserver/zap_raft.go:77","msg":"fcfb4c91f4fc885c is starting a new election at term 68405"} Mar 17 17:23:30 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:23:30.567-0700","logger":"raft","caller":"etcdserver/zap_raft.go:77","msg":"fcfb4c91f4fc885c became pre-candidate at term 68405"} Mar 17 17:23:30 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:23:30.567-0700","logger":"raft","caller":"etcdserver/zap_raft.go:77","msg":"fcfb4c91f4fc885c received MsgPreVoteResp from fcfb4c91f4fc885c at term 68405"} Mar 17 17:23:30 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:23:30.567-0700","logger":"raft","caller":"etcdserver/zap_raft.go:77","msg":"fcfb4c91f4fc885c [logterm: 68405, index: 457073657] sent MsgPreVote request to 3fdd1f92a3b0a374 at term 68405"} Mar 17 17:23:30 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:23:30.567-0700","logger":"raft","caller":"etcdserver/zap_raft.go:77","msg":"fcfb4c91f4fc885c [logterm: 68405, index: 457073657] sent MsgPreVote request to 87e21aa89889ebe3 at term 68405"} Mar 17 17:23:30 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:23:30.568-0700","logger":"raft","caller":"etcdserver/zap_raft.go:77","msg":"fcfb4c91f4fc885c received MsgPreVoteResp from 87e21aa89889ebe3 at term 68405"} Mar 17 17:23:30 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:23:30.568-0700","logger":"raft","caller":"etcdserver/zap_raft.go:77","msg":"fcfb4c91f4fc885c has received 2 MsgPreVoteResp votes and 0 vote rejections"} Mar 17 17:23:30 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:23:30.568-0700","logger":"raft","caller":"etcdserver/zap_raft.go:77","msg":"fcfb4c91f4fc885c became candidate at term 68406"} Mar 17 17:23:30 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:23:30.568-0700","logger":"raft","caller":"etcdserver/zap_raft.go:77","msg":"fcfb4c91f4fc885c received MsgVoteResp from fcfb4c91f4fc885c at term 68406"} Mar 17 17:23:30 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:23:30.568-0700","logger":"raft","caller":"etcdserver/zap_raft.go:77","msg":"fcfb4c91f4fc885c [logterm: 68405, index: 457073657] sent MsgVote request to 3fdd1f92a3b0a374 at term 68406"} Mar 17 17:23:30 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:23:30.568-0700","logger":"raft","caller":"etcdserver/zap_raft.go:77","msg":"fcfb4c91f4fc885c [logterm: 68405, index: 457073657] sent MsgVote request to 87e21aa89889ebe3 at term 68406"} Mar 17 17:23:30 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:23:30.581-0700","logger":"raft","caller":"etcdserver/zap_raft.go:77","msg":"fcfb4c91f4fc885c received MsgVoteResp from 87e21aa89889ebe3 at term 68406"} Mar 17 17:23:30 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:23:30.582-0700","logger":"raft","caller":"etcdserver/zap_raft.go:77","msg":"fcfb4c91f4fc885c has received 2 MsgVoteResp votes and 0 vote rejections"} Mar 17 17:23:30 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:23:30.582-0700","logger":"raft","caller":"etcdserver/zap_raft.go:77","msg":"fcfb4c91f4fc885c became leader at term 68406"} Mar 17 17:23:30 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:23:30.582-0700","logger":"raft","caller":"etcdserver/zap_raft.go:77","msg":"raft.node: fcfb4c91f4fc885c elected leader fcfb4c91f4fc885c at term 68406"} Mar 17 17:23:30 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:23:30.620-0700","caller":"etcdserver/util.go:123","msg":"failed to apply request","took":"12.978µs","request":"header: txn: success:> failure:<>>","response":"","error":"etcdserver: no space"} Mar 17 17:23:30 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:23:30.629-0700","caller":"etcdserver/server.go:2029","msg":"published local member to cluster through raft","local-member-id":"fcfb4c91f4fc885c","local-member-attributes":"{Name:antikythera-0948c62a ClientURLs:[https://192.168.1.33:2379]}","request-path":"/0/members/fcfb4c91f4fc885c/attributes","cluster-id":"d1c8afd71ab75419","publish-timeout":"15s"} Mar 17 17:23:30 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:23:30.629-0700","caller":"embed/serve.go:98","msg":"ready to serve client requests"} Mar 17 17:23:30 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:23:30.629-0700","caller":"embed/serve.go:98","msg":"ready to serve client requests"} Mar 17 17:23:30 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:23:30.631-0700","caller":"embed/serve.go:188","msg":"serving client traffic securely","address":"192.168.1.33:2379"} Mar 17 17:23:30 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:23:30.631-0700","caller":"embed/serve.go:188","msg":"serving client traffic securely","address":"127.0.0.1:2379"} Mar 17 17:23:30 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:23:30.633-0700","caller":"embed/config_logging.go:169","msg":"rejected connection","remote-addr":"127.0.0.1:51604","server-name":"","error":"EOF"} Mar 17 17:23:30 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:23:30.633-0700","caller":"embed/config_logging.go:169","msg":"rejected connection","remote-addr":"127.0.0.1:52198","server-name":"","error":"EOF"} Mar 17 17:23:30 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:23:30.633-0700","caller":"embed/config_logging.go:169","msg":"rejected connection","remote-addr":"127.0.0.1:50784","server-name":"","error":"EOF"} Mar 17 17:23:30 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:23:30.633-0700","caller":"embed/config_logging.go:169","msg":"rejected connection","remote-addr":"127.0.0.1:51784","server-name":"","error":"EOF"} Mar 17 17:23:30 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:23:30.633-0700","caller":"embed/config_logging.go:169","msg":"rejected connection","remote-addr":"127.0.0.1:50770","server-name":"","error":"EOF"} Mar 17 17:23:30 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:23:30.635-0700","caller":"embed/config_logging.go:169","msg":"rejected connection","remote-addr":"127.0.0.1:52904","server-name":"","error":"EOF"} Mar 17 17:23:30 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:23:30.635-0700","caller":"embed/config_logging.go:169","msg":"rejected connection","remote-addr":"127.0.0.1:53006","server-name":"","error":"EOF"} Mar 17 17:23:30 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:23:30.635-0700","caller":"embed/config_logging.go:169","msg":"rejected connection","remote-addr":"127.0.0.1:52308","server-name":"","error":"EOF"} Mar 17 17:23:30 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:23:30.635-0700","caller":"embed/config_logging.go:169","msg":"rejected connection","remote-addr":"127.0.0.1:51490","server-name":"","error":"EOF"} Mar 17 17:23:30 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:23:30.670-0700","caller":"etcdserver/util.go:123","msg":"failed to apply request","took":"12.714µs","request":"header: txn: success:> failure:<>>","response":"","error":"etcdserver: no space"} Mar 17 17:23:30 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:23:30.741-0700","caller":"rafthttp/stream.go:421","msg":"lost TCP streaming connection with remote peer","stream-reader-type":"stream Message","local-member-id":"fcfb4c91f4fc885c","remote-peer-id":"87e21aa89889ebe3","error":"unexpected EOF"} Mar 17 17:23:30 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:23:30.741-0700","caller":"rafthttp/stream.go:421","msg":"lost TCP streaming connection with remote peer","stream-reader-type":"stream MsgApp v2","local-member-id":"fcfb4c91f4fc885c","remote-peer-id":"87e21aa89889ebe3","error":"unexpected EOF"} Mar 17 17:23:30 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:23:30.742-0700","caller":"rafthttp/peer_status.go:66","msg":"peer became inactive (message send to peer failed)","peer-id":"87e21aa89889ebe3","error":"failed to read 87e21aa89889ebe3 on stream Message (unexpected EOF)"} Mar 17 17:23:31 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:23:31.190-0700","caller":"rafthttp/probing_status.go:68","msg":"prober detected unhealthy status","round-tripper-name":"ROUND_TRIPPER_SNAPSHOT","remote-peer-id":"3fdd1f92a3b0a374","rtt":"0s","error":"dial tcp 192.168.1.62:2380: connect: no route to host"} Mar 17 17:23:31 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:23:31.190-0700","caller":"rafthttp/probing_status.go:68","msg":"prober detected unhealthy status","round-tripper-name":"ROUND_TRIPPER_RAFT_MESSAGE","remote-peer-id":"3fdd1f92a3b0a374","rtt":"0s","error":"dial tcp 192.168.1.62:2380: connect: no route to host"} Mar 17 17:23:31 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:23:31.192-0700","caller":"rafthttp/probing_status.go:68","msg":"prober detected unhealthy status","round-tripper-name":"ROUND_TRIPPER_SNAPSHOT","remote-peer-id":"87e21aa89889ebe3","rtt":"0s","error":"dial tcp 192.168.1.31:2380: connect: connection refused"} Mar 17 17:23:31 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:23:31.196-0700","caller":"rafthttp/probing_status.go:68","msg":"prober detected unhealthy status","round-tripper-name":"ROUND_TRIPPER_RAFT_MESSAGE","remote-peer-id":"87e21aa89889ebe3","rtt":"0s","error":"dial tcp 192.168.1.31:2380: connect: connection refused"} Mar 17 17:23:31 antikythera k3s[22301]: time="2022-03-17T17:23:31-07:00" level=info msg="Waiting for etcd server to become available" Mar 17 17:23:31 antikythera k3s[22301]: time="2022-03-17T17:23:31-07:00" level=info msg="Waiting for API server to become available" Mar 17 17:23:31 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:23:31.567-0700","caller":"rafthttp/stream.go:223","msg":"lost TCP streaming connection with remote peer","stream-writer-type":"stream Message","local-member-id":"fcfb4c91f4fc885c","remote-peer-id":"87e21aa89889ebe3"} Mar 17 17:23:32 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:23:32.630-0700","caller":"etcdserver/cluster_util.go:288","msg":"failed to reach the peer URL","address":"https://192.168.1.62:2380/version","remote-member-id":"3fdd1f92a3b0a374","error":"Get \"https://192.168.1.62:2380/version\": dial tcp 192.168.1.62:2380: connect: no route to host"} Mar 17 17:23:32 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:23:32.630-0700","caller":"etcdserver/cluster_util.go:155","msg":"failed to get version","remote-member-id":"3fdd1f92a3b0a374","error":"Get \"https://192.168.1.62:2380/version\": dial tcp 192.168.1.62:2380: connect: no route to host"} Mar 17 17:23:32 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:23:32.631-0700","caller":"etcdserver/cluster_util.go:288","msg":"failed to reach the peer URL","address":"https://192.168.1.31:2380/version","remote-member-id":"87e21aa89889ebe3","error":"Get \"https://192.168.1.31:2380/version\": dial tcp 192.168.1.31:2380: connect: connection refused"} Mar 17 17:23:32 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:23:32.631-0700","caller":"etcdserver/cluster_util.go:155","msg":"failed to get version","remote-member-id":"87e21aa89889ebe3","error":"Get \"https://192.168.1.31:2380/version\": dial tcp 192.168.1.31:2380: connect: connection refused"} Mar 17 17:23:33 antikythera k3s[22301]: time="2022-03-17T17:23:33-07:00" level=info msg="Connecting to proxy" url="wss://127.0.0.1:6443/v1-k3s/connect" Mar 17 17:23:33 antikythera k3s[22301]: time="2022-03-17T17:23:33-07:00" level=error msg="Failed to connect to proxy" error="websocket: bad handshake" Mar 17 17:23:33 antikythera k3s[22301]: time="2022-03-17T17:23:33-07:00" level=error msg="Remotedialer proxy error" error="websocket: bad handshake" Mar 17 17:23:34 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:23:34.081-0700","caller":"etcdserver/v3_server.go:815","msg":"waiting for ReadIndex response took too long, retrying","sent-request-id":9825868788154341894,"retry-timeout":"500ms"} Mar 17 17:23:34 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:23:34.521-0700","caller":"rafthttp/stream.go:194","msg":"lost TCP streaming connection with remote peer","stream-writer-type":"stream MsgApp v2","local-member-id":"fcfb4c91f4fc885c","remote-peer-id":"87e21aa89889ebe3"} Mar 17 17:23:34 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:23:34.581-0700","caller":"etcdserver/v3_server.go:815","msg":"waiting for ReadIndex response took too long, retrying","sent-request-id":9825868788154341894,"retry-timeout":"500ms"} Mar 17 17:23:35 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:23:35.081-0700","caller":"etcdserver/v3_server.go:815","msg":"waiting for ReadIndex response took too long, retrying","sent-request-id":9825868788154341894,"retry-timeout":"500ms"} Mar 17 17:23:35 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:23:35.582-0700","caller":"etcdserver/v3_server.go:815","msg":"waiting for ReadIndex response took too long, retrying","sent-request-id":9825868788154341894,"retry-timeout":"500ms"} Mar 17 17:23:36 antikythera k3s[22301]: time="2022-03-17T17:23:36-07:00" level=info msg="Cluster-Http-Server 2022/03/17 17:23:36 http: TLS handshake error from 192.168.1.31:41510: remote error: tls: bad certificate" Mar 17 17:23:36 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:23:36.083-0700","caller":"etcdserver/v3_server.go:815","msg":"waiting for ReadIndex response took too long, retrying","sent-request-id":9825868788154341894,"retry-timeout":"500ms"} Mar 17 17:23:36 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:23:36.191-0700","caller":"rafthttp/probing_status.go:68","msg":"prober detected unhealthy status","round-tripper-name":"ROUND_TRIPPER_SNAPSHOT","remote-peer-id":"3fdd1f92a3b0a374","rtt":"0s","error":"dial tcp 192.168.1.62:2380: connect: no route to host"} Mar 17 17:23:36 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:23:36.191-0700","caller":"rafthttp/probing_status.go:68","msg":"prober detected unhealthy status","round-tripper-name":"ROUND_TRIPPER_RAFT_MESSAGE","remote-peer-id":"3fdd1f92a3b0a374","rtt":"0s","error":"dial tcp 192.168.1.62:2380: connect: no route to host"} Mar 17 17:23:36 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:23:36.193-0700","caller":"rafthttp/probing_status.go:68","msg":"prober detected unhealthy status","round-tripper-name":"ROUND_TRIPPER_SNAPSHOT","remote-peer-id":"87e21aa89889ebe3","rtt":"0s","error":"dial tcp 192.168.1.31:2380: connect: connection refused"} Mar 17 17:23:36 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:23:36.196-0700","caller":"rafthttp/probing_status.go:68","msg":"prober detected unhealthy status","round-tripper-name":"ROUND_TRIPPER_RAFT_MESSAGE","remote-peer-id":"87e21aa89889ebe3","rtt":"0s","error":"dial tcp 192.168.1.31:2380: connect: connection refused"} Mar 17 17:23:36 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:23:36.478-0700","caller":"rafthttp/peer_status.go:53","msg":"peer became active","peer-id":"87e21aa89889ebe3"} Mar 17 17:23:36 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:23:36.478-0700","caller":"rafthttp/stream.go:412","msg":"established TCP streaming connection with remote peer","stream-reader-type":"stream MsgApp v2","local-member-id":"fcfb4c91f4fc885c","remote-peer-id":"87e21aa89889ebe3"} Mar 17 17:23:36 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:23:36.478-0700","caller":"rafthttp/stream.go:412","msg":"established TCP streaming connection with remote peer","stream-reader-type":"stream Message","local-member-id":"fcfb4c91f4fc885c","remote-peer-id":"87e21aa89889ebe3"} Mar 17 17:23:36 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:23:36.481-0700","caller":"traceutil/trace.go:171","msg":"trace[2137108425] linearizableReadLoop","detail":"{readStateIndex:457073662; appliedIndex:457073662; }","duration":"2.900762035s","start":"2022-03-17T17:23:33.580-0700","end":"2022-03-17T17:23:36.481-0700","steps":["trace[2137108425] 'read index received' (duration: 2.900753826s)","trace[2137108425] 'applied index is now lower than readState.Index' (duration: 6.649µs)"],"step_count":2} Mar 17 17:23:36 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:23:36.482-0700","caller":"etcdserver/util.go:166","msg":"apply request took too long","took":"2.901072235s","expected-duration":"100ms","prefix":"read-only range ","request":"key:\"k3s/etcd/learnerProgress\" ","response":"range_response_count:1 size:146"} Mar 17 17:23:36 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:23:36.482-0700","caller":"traceutil/trace.go:171","msg":"trace[54497438] range","detail":"{range_begin:k3s/etcd/learnerProgress; range_end:; response_count:1; response_revision:420403256; }","duration":"2.901188307s","start":"2022-03-17T17:23:33.580-0700","end":"2022-03-17T17:23:36.482-0700","steps":["trace[54497438] 'agreement among raft nodes before linearized reading' (duration: 2.900971293s)"],"step_count":1} Mar 17 17:23:36 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:23:36.482-0700","caller":"rafthttp/stream.go:249","msg":"set message encoder","from":"fcfb4c91f4fc885c","to":"87e21aa89889ebe3","stream-type":"stream Message"} Mar 17 17:23:36 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:23:36.482-0700","caller":"rafthttp/stream.go:274","msg":"established TCP streaming connection with remote peer","stream-writer-type":"stream Message","local-member-id":"fcfb4c91f4fc885c","remote-peer-id":"87e21aa89889ebe3"} Mar 17 17:23:36 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:23:36.482-0700","caller":"v3rpc/interceptor.go:197","msg":"request stats","start time":"2022-03-17T17:23:33.580-0700","time spent":"2.901272452s","remote":"127.0.0.1:52828","response type":"/etcdserverpb.KV/Range","request count":0,"request size":26,"response count":1,"response size":172,"request content":"key:\"k3s/etcd/learnerProgress\" "} Mar 17 17:23:36 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:23:36.483-0700","caller":"rafthttp/stream.go:249","msg":"set message encoder","from":"fcfb4c91f4fc885c","to":"87e21aa89889ebe3","stream-type":"stream MsgApp v2"} Mar 17 17:23:36 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:23:36.483-0700","caller":"rafthttp/stream.go:274","msg":"established TCP streaming connection with remote peer","stream-writer-type":"stream MsgApp v2","local-member-id":"fcfb4c91f4fc885c","remote-peer-id":"87e21aa89889ebe3"} Mar 17 17:23:36 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:23:36.501-0700","caller":"v3rpc/interceptor.go:197","msg":"request stats","start time":"2022-03-17T17:23:31.203-0700","time spent":"5.2986176s","remote":"127.0.0.1:52828","response type":"/etcdserverpb.Maintenance/Alarm","request count":-1,"request size":-1,"response count":-1,"response size":-1,"request content":""} Mar 17 17:23:36 antikythera k3s[22301]: time="2022-03-17T17:23:36-07:00" level=info msg="etcd data store connection OK" Mar 17 17:23:36 antikythera k3s[22301]: time="2022-03-17T17:23:36-07:00" level=info msg="Waiting for API server to become available" Mar 17 17:23:36 antikythera k3s[22301]: Flag --insecure-port has been deprecated, This flag has no effect now and will be removed in v1.24. Mar 17 17:23:36 antikythera k3s[22301]: I0317 17:23:36.506806 22301 server.go:593] external host was not specified, using 192.168.1.33 Mar 17 17:23:36 antikythera k3s[22301]: I0317 17:23:36.507424 22301 server.go:186] Version: v1.23.4+k3s-95f66a04 Mar 17 17:23:36 antikythera k3s[22301]: I0317 17:23:36.513367 22301 shared_informer.go:240] Waiting for caches to sync for node_authorizer Mar 17 17:23:36 antikythera k3s[22301]: I0317 17:23:36.515864 22301 plugins.go:158] Loaded 12 mutating admission controller(s) successfully in the following order: NamespaceLifecycle,LimitRanger,ServiceAccount,NodeRestriction,TaintNodesByCondition,Priority,DefaultTolerationSeconds,DefaultStorageClass,StorageObjectInUseProtection,RuntimeClass,DefaultIngressClass,MutatingAdmissionWebhook. Mar 17 17:23:36 antikythera k3s[22301]: I0317 17:23:36.515910 22301 plugins.go:161] Loaded 11 validating admission controller(s) successfully in the following order: LimitRanger,ServiceAccount,PodSecurity,Priority,PersistentVolumeClaimResize,RuntimeClass,CertificateApproval,CertificateSigning,CertificateSubjectRestriction,ValidatingAdmissionWebhook,ResourceQuota. Mar 17 17:23:36 antikythera k3s[22301]: I0317 17:23:36.518158 22301 plugins.go:158] Loaded 12 mutating admission controller(s) successfully in the following order: NamespaceLifecycle,LimitRanger,ServiceAccount,NodeRestriction,TaintNodesByCondition,Priority,DefaultTolerationSeconds,DefaultStorageClass,StorageObjectInUseProtection,RuntimeClass,DefaultIngressClass,MutatingAdmissionWebhook. Mar 17 17:23:36 antikythera k3s[22301]: I0317 17:23:36.518190 22301 plugins.go:161] Loaded 11 validating admission controller(s) successfully in the following order: LimitRanger,ServiceAccount,PodSecurity,Priority,PersistentVolumeClaimResize,RuntimeClass,CertificateApproval,CertificateSigning,CertificateSubjectRestriction,ValidatingAdmissionWebhook,ResourceQuota. Mar 17 17:23:36 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:23:36.552-0700","caller":"etcdserver/util.go:123","msg":"failed to apply request","took":"17.793µs","request":"header: txn: success:> failure:<>>","response":"","error":"etcdserver: no space"} Mar 17 17:23:36 antikythera k3s[22301]: {"level":"warn","ts":"2022-03-17T17:23:36.552-0700","logger":"etcd-client","caller":"v3@v3.5.1-k3s1/retry_interceptor.go:62","msg":"retrying of unary invoker failed","target":"etcd-endpoints://0xc0198e8000/127.0.0.1:2379","attempt":0,"error":"rpc error: code = ResourceExhausted desc = etcdserver: mvcc: database space exceeded"} Mar 17 17:23:36 antikythera k3s[22301]: panic: etcdserver: mvcc: database space exceeded Mar 17 17:23:36 antikythera k3s[22301]: goroutine 597 [running]: Mar 17 17:23:36 antikythera k3s[22301]: github.com/k3s-io/k3s/pkg/cluster.(*Cluster).Start.func1() Mar 17 17:23:36 antikythera k3s[22301]: #011/go/src/github.com/k3s-io/k3s/pkg/cluster/cluster.go:104 +0xff Mar 17 17:23:36 antikythera k3s[22301]: created by github.com/k3s-io/k3s/pkg/cluster.(*Cluster).Start Mar 17 17:23:36 antikythera k3s[22301]: #011/go/src/github.com/k3s-io/k3s/pkg/cluster/cluster.go:99 +0x66f Mar 17 17:23:36 antikythera systemd[1]: k3s.service: Main process exited, code=exited, status=2/INVALIDARGUMENT Mar 17 17:23:36 antikythera systemd[1]: k3s.service: Failed with result 'exit-code'. Mar 17 17:23:36 antikythera systemd[1]: Failed to start Lightweight Kubernetes. ```
brandond commented 2 years ago

What did you reset the quota to? It looks like it's back to the default of 2GB now: "quota-size-bytes":2147483648

How much space is your etcd datastore actually consuming? The logs indicate that its only a couple hundred MB: Mar 17 17:22:30 antikythera k3s[22301]: {"level":"info","ts":"2022-03-17T17:22:30.735-0700","caller":"etcdserver/server.go:518","msg":"recovered v3 backend from snapshot","backend-size-bytes":357355520,"backend-size":"357 MB","backend-size-in-use-bytes":35020800,"backend-size-in-use":"35 MB"}

Can you show the output of:

Also, if you can attach those logs instead of pasting them inline, my life would be much easier.

ssmall commented 2 years ago

My /etc/systemd/system/k3s.service now has:

ExecStart=/usr/local/bin/k3s \
    server \
        '--server' \
        'https://192.168.1.31:6443' \
        '--disable' \
        'servicelb,traefik' \
        '--debug' \
        '--etcd-arg=quota-backend-bytes=8589934592'

so I'm not sure why it's going back to the default quota, unless there is a typo in there somewhere (I have looked it over a couple times and it looks good to me but maybe fresh eyes will catch the issue)

Here is the output of the requested commands. All looks reasonable to me:

$ sudo du -khs /var/lib/rancher/k3s/server/db/etcd/
771M    /var/lib/rancher/k3s/server/db/etcd/
$ sudo df -kh /var/lib/rancher/k3s/server/db/etcd/
Filesystem           Size  Used Avail Use% Mounted on
/dev/mapper/vg1-var   29G   15G   13G  54% /var

Also, if you can attach those logs instead of pasting them inline, my life would be much easier.

Roger that, will do.

brandond commented 2 years ago

Yeah, it sure looks like it's not loading the argument.

mdrahman-suse commented 2 years ago

Reproduced the issue in k3s with version v1.23.4+k3s1

Verified the fix in k3s with v1.23.5-rc1+k3s1

brandond commented 2 years ago

@mdrahman-suse if you're restarting a node with an existing datastore, we actually start etcd twice. The initial temporary standalone etcd uses a very minimal configuration to extract the bootstrap data, and then we start up another copy with the permanent configuration. Can you confirm that you're looking at the logs from the second etcd startup?

{"level":"info","ts":"2022-03-23T18:03:00.924Z","caller":"embed/etcd.go:307","msg":"starting an etcd server","etcd-version":"3.5.1","git-sha":"Not provided (use ./build instead of go build)","go-version":"go1.17.5","go-os":"linux","go-arch":"amd64","max-cpu-set":8,"max-cpu-available":8,"member-initialized":true,"name":"k3s-server-1-4b4242bb","data-dir":"/var/lib/rancher/k3s/server/db/etcd-tmp","wal-dir":"","wal-dir-dedicated":"","member-dir":"/var/lib/rancher/k3s/server/db/etcd-tmp/member","force-new-cluster":true,"heartbeat-interval":"500ms","election-timeout":"5s","initial-election-tick-advance":true,"snapshot-count":100000,"snapshot-catchup-entries":5000,"initial-advertise-peer-urls":["http://127.0.0.1:2400"],"listen-peer-urls":["http://127.0.0.1:2400"],"advertise-client-urls":["http://127.0.0.1:2399"],"listen-client-urls":["http://127.0.0.1:2399"],"listen-metrics-urls":[],"cors":["*"],"host-whitelist":["*"],"initial-cluster":"","initial-cluster-state":"new","initial-cluster-token":"","quota-size-bytes":2147483648,"pre-vote":true,"initial-corrupt-check":false,"corrupt-check-time-interval":"0s","auto-compaction-mode":"","auto-compaction-retention":"0s","auto-compaction-interval":"0s","discovery-url":"","discovery-proxy":"","downgrade-check-interval":"5s"}
{"level":"info","ts":"2022-03-23T18:03:00.957Z","caller":"etcdserver/quota.go:94","msg":"enabled backend quota with default value","quota-name":"v3-applier","quota-size-bytes":2147483648,"quota-size":"2.1 GB"}
{"level":"info","ts":"2022-03-23T18:03:07.961Z","caller":"embed/etcd.go:307","msg":"starting an etcd server","etcd-version":"3.5.1","git-sha":"Not provided (use ./build instead of go build)","go-version":"go1.17.5","go-os":"linux","go-arch":"amd64","max-cpu-set":8,"max-cpu-available":8,"member-initialized":true,"name":"k3s-server-1-4b4242bb","data-dir":"/var/lib/rancher/k3s/server/db/etcd","wal-dir":"","wal-dir-dedicated":"","member-dir":"/var/lib/rancher/k3s/server/db/etcd/member","force-new-cluster":false,"heartbeat-interval":"500ms","election-timeout":"5s","initial-election-tick-advance":true,"snapshot-count":100000,"snapshot-catchup-entries":5000,"initial-advertise-peer-urls":["http://localhost:2380"],"listen-peer-urls":["https://172.17.0.2:2380"],"advertise-client-urls":["https://172.17.0.2:2379"],"listen-client-urls":["https://127.0.0.1:2379","https://172.17.0.2:2379"],"listen-metrics-urls":["http://127.0.0.1:2381"],"cors":["*"],"host-whitelist":["*"],"initial-cluster":"","initial-cluster-state":"new","initial-cluster-token":"","quota-size-bytes":1073741824,"pre-vote":true,"initial-corrupt-check":false,"corrupt-check-time-interval":"0s","auto-compaction-mode":"","auto-compaction-retention":"0s","auto-compaction-interval":"0s","discovery-url":"","discovery-proxy":"","downgrade-check-interval":"5s"}

Note that the initial startup has the default quota, and a temporary data-dir: "data-dir":"/var/lib/rancher/k3s/server/db/etcd-tmp". The second has the configured quota and non-temporary data-dir. This is expected.

mdrahman-suse commented 2 years ago

Thanks @brandond for the details, I was able to validate the argument is being read correctly

ssmall commented 2 years ago

It looks like this issue has been closed but I have not been able to restore my existing cluster to a working state after the size of the etcd database exceeded its original limits. Can we re-open this issue or do I need to open a separate one to continue getting assistance?

brandond commented 2 years ago

The last we left off it looked like you weren't starting the service with an acceptable quota value. We're you able to verify that you're setting the correct value in the systemd unit?

ssmall commented 2 years ago

The last we left off it looked like you weren't starting the service with an acceptable quota value. We're you able to verify that you're setting the correct value in the systemd unit?

I don't think that's true, at least to my recollection and what I see here in the comment history. Have a look at https://github.com/k3s-io/k3s/issues/4787#issuecomment-1071922908 and let me know if there's anything wrong with the arguments listed there.

brandond commented 2 years ago

The arguments looks fine, but I'm not sure it's being used. You're sure you did a systemctl daemon-reload before restarting the k3s service? I can't see any way what you're reporting would be happening, other than systemd just not passing the updated arg.

ssmall commented 2 years ago

Yes, I'm certain. I even did a full reboot of the node just to be sure.

You mentioned previously that when k3s starts it uses a temporary etcd instance with a default quota -- is it possible that it's somehow failing at that stage before applying the quota arg I have provided? (Just speculating here since I don't have anything more to go on than what I've already provided)

ssmall commented 2 years ago

It's also suspicious to me that the error now only occurs when I try to start up the second master node (with the same args). Is there something about the etcd cluster synchronization that is not respecting the custom quota?

brandond commented 2 years ago

I think the last logs I saw from you still had the quota set to 10GB. Lets go back to that other issue to follow up on this discussion - can you attach the most recent startup logs from all the etcd nodes to a new comment over on that issue?

ssmall commented 2 years ago

I think the last logs I saw from you still had the quota set to 10GB. Lets go back to that other issue to follow up on this discussion - can you attach the most recent startup logs from all the etcd nodes to a new comment over on that issue?

Sorry, what other issue?

ssmall commented 2 years ago

Please see logs in https://github.com/k3s-io/k3s/issues/4787#issuecomment-1071901452 -- I already adjusted the quota size back to 8GiB as you had previously requested and included new logs. Seems like maybe you've lost some context on where we were with this investigation in the intervening days? Might be worth looking back over the comment history on this issue.

chenxb0715 commented 1 year ago

--etcd-arg

but the version v1.19.5+k3s1 didnt hava --etcd-arg parameter

brandond commented 1 year ago

@chenxb0715 v1.19.5 is over two years old. Please upgrade to a supported release - currently 1.23 or newer.

Also, please keep your conversation in the discussion thread, instead of adding on to this closed issue.