Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test(manual): restarting Kubelet should not result in repeated "no Pending workload ..." events #1796

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions docs/content/manual/release-specific/v1.7.0/_index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
---
title: v1.7.0
---
Original file line number Diff line number Diff line change
@@ -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.