-
Notifications
You must be signed in to change notification settings - Fork 560
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
deploy: set topology feature gate to false for rbd provisioner by default #1771
Conversation
/retest ci/centos/mini-e2e/k8s-1.18 |
/test ci/centos/mini-e2e/k8s-1.18 |
Not sure what could cause this:
CI jobs did pass for other runs... 🤔 |
with csi-provisioner v2.x the topology based provisioning will not have any backward compatibility with older version of kubernetes, if the nodes are not labeled with topology keys, the pvc creation is going to get fail with error `accessibility requirements: no available topology found`, disabling the topology based provisioning by default, if user want to use it he can always enable it. Signed-off-by: Madhu Rajanna <[email protected]>
as we are testing the topology based provisioning in our E2E, we need to set topology=true in E2E. Signed-off-by: Madhu Rajanna <[email protected]>
external-provisioner is exposing a new argument to set the default fstype while starting the provisioner sidecar, if the fstype is not specified in the storageclass the default fstype will be applied for the pvc created from the storageclass. Signed-off-by: Madhu Rajanna <[email protected]>
47faf88
to
0857e86
Compare
/retest ci/centos/mini-e2e-helm/k8s-1.19 |
Failed deploying Rook. Not sure what the error could be. |
with csi-provisioner v2.x the topology based provisioning will not have any backward compatibility with the older version of kubernetes if the nodes are not labeled with topology keys, the pvc creation is going to get fail with error
accessibility requirements: no available topology found
, disabling the topology based provisioning by default if the user wants to use it he can always enable it.It also adds the default-fstype flag to the provisioner sidecar.
fixes: #1473
Signed-off-by: Madhu Rajanna [email protected]