We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The volume modifier attempts to run on the same node as the csi-resizer by watching the external-resizer lease and trying to match the holder identity of the lease to the current pod name in cases where the CSI driver pod is host networked this does not work since the resizer sets the identity of it's lease from the sanitized hostname which for host networked pods is the hostname of the underlying node: https://github.com/kubernetes-csi/csi-lib-utils/blob/master/leaderelection/leader_election.go#L202-L204 / https://github.com/kubernetes-csi/csi-lib-utils/blob/master/leaderelection/leader_election.go#L207-L215
This mismatch of names means you end up deadlocked with no volume modifier running
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The volume modifier attempts to run on the same node as the csi-resizer by watching the external-resizer lease and trying to match the holder identity of the lease to the current pod name in cases where the CSI driver pod is host networked this does not work since the resizer sets the identity of it's lease from the sanitized hostname which for host networked pods is the hostname of the underlying node:
https://github.com/kubernetes-csi/csi-lib-utils/blob/master/leaderelection/leader_election.go#L202-L204 / https://github.com/kubernetes-csi/csi-lib-utils/blob/master/leaderelection/leader_election.go#L207-L215
This mismatch of names means you end up deadlocked with no volume modifier running
The text was updated successfully, but these errors were encountered: