-
Notifications
You must be signed in to change notification settings - Fork 42
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
Driver registrar can sometimes take 1 minute to start #76
Comments
Relevant code: driver-registrar/pkg/connection/connection.go Lines 86 to 96 in 0c989a8
In this case it received |
Something that mitigates the issue is to put the CSI driver container first in the list of containers for the pod. I have seen timing related delays on a slow cluster because Kubernetes pulled images one-by-one, then started registrar first before it started pulling the CSI driver image. But the real fix will be to make that connect loop iterate faster. This is code that should go into the new kubernetes-csi/csi-utils repo that we started to discuss for gRPC logging. |
Another suggestion is to try different rpc options: kubernetes/kubernetes#71433 (comment) |
Investigating a fix/workaround based on suggestions here. |
Created PR - #78 |
🛂 ⛔️
This repo has been closed, and no new changes will be accepted. Please move your content to one of these repos. Thank you, |
Driver registrar can sometimes take 1 minute to start. See kubernetes/kubernetes#71433 (comment)
Let's understand why, and see if we can reduce this.
The text was updated successfully, but these errors were encountered: