From de102f72465f654f1f1c45cc4869e11519258f3c Mon Sep 17 00:00:00 2001 From: Chin-Ya Huang Date: Fri, 1 Mar 2024 14:14:03 +0800 Subject: [PATCH 1/2] test(manual): add v1.7.0 _index.md Signed-off-by: Chin-Ya Huang --- docs/content/manual/release-specific/v1.7.0/_index.md | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 docs/content/manual/release-specific/v1.7.0/_index.md diff --git a/docs/content/manual/release-specific/v1.7.0/_index.md b/docs/content/manual/release-specific/v1.7.0/_index.md new file mode 100644 index 0000000000..f4fc9aeb62 --- /dev/null +++ b/docs/content/manual/release-specific/v1.7.0/_index.md @@ -0,0 +1,3 @@ +--- +title: v1.7.0 +--- From eec96fd0322b1e1ce162d0addf1567e872f74d04 Mon Sep 17 00:00:00 2001 From: Chin-Ya Huang Date: Fri, 1 Mar 2024 14:32:30 +0800 Subject: [PATCH 2/2] test(manual): restart Kubelet should not result in repeated event longhorn/longhorn-8072 Signed-off-by: Chin-Ya Huang --- ...st-kubelet-restart-no-pending-pod-event.md | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 docs/content/manual/release-specific/v1.7.0/test-kubelet-restart-no-pending-pod-event.md diff --git a/docs/content/manual/release-specific/v1.7.0/test-kubelet-restart-no-pending-pod-event.md b/docs/content/manual/release-specific/v1.7.0/test-kubelet-restart-no-pending-pod-event.md new file mode 100644 index 0000000000..5021d855e0 --- /dev/null +++ b/docs/content/manual/release-specific/v1.7.0/test-kubelet-restart-no-pending-pod-event.md @@ -0,0 +1,22 @@ +--- +Test: restarting Kubelet should not result in repeated "no Pending workload pods ..." event for the workload pod. +--- + +## Related issues + +- https://github.com/longhorn/longhorn/issues/8072 + +## Test step + +**Given** A [deployment](https://github.com/longhorn/longhorn/blob/master/examples/deployment.yaml) is created. + +**When** Kubelet on the node with attached volume of the deployment is restarted. +```bash +systemctl restart k3s-agent.service +``` + +**Then** Observe the events of the deployment pod. +``` +kubectl get events --field-selector involvedObject.name=${POD_NAME} -w +``` +**And** There are no recurring `no Pending workload pods for volume xxx to be mounted` events.