-
Notifications
You must be signed in to change notification settings - Fork 27
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
[CSI] Enable discard mount option only for YDB-based disks #3135
base: main
Are you sure you want to change the base?
Conversation
ff5972b
to
6ac5db5
Compare
6ac5db5
to
8699c9f
Compare
@@ -67,6 +67,7 @@ type Config struct { | |||
NfsLocalEndpointPort uint | |||
NfsLocalEndpointSocket string | |||
MountOptions string | |||
Discard bool |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
UseDiscardForYDBBasedDisks
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fixed
@@ -124,6 +124,7 @@ type nodeService struct { | |||
mounter mounter.Interface | |||
volumeOps *sync.Map | |||
mountOptions []string | |||
discard bool |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
useDiscardForYDBBasedDisks
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fixed
#3129