-
Notifications
You must be signed in to change notification settings - Fork 15
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 PowerFlex driver docs update - renameSDC and preapprovedGUID #455
Changes from 2 commits
51508ce
52e4ffc
d4867cc
e2050ba
da0d817
e73ec43
5dccf3c
f9c3f6f
a9fe589
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -661,4 +661,63 @@ allowedTopologies: | |
values: | ||
- csi-vxflexos.dellemc.com | ||
``` | ||
Once the volume gets created, the ControllerPublishVolume will set the QoS limits for the volumes mapped to SDC. | ||
Once the volume gets created, the ControllerPublishVolume will set the QoS limits for the volumes mapped to SDC. | ||
|
||
## Rename SDC | ||
|
||
Starting in version 2.6, the CSI Driver for PowerFlex now supports renaming of SDC. To use this feature, the node section of values.yaml should have renameSDC keys enabled with a prefix value. | ||
|
||
```yaml | ||
# "node" allows to configure node specific parameters | ||
node: | ||
... | ||
... | ||
|
||
# "renameSDC" defines the rename operation for SDC | ||
# Default value: None | ||
renameSDC: | ||
# enabled: Enable/Disable rename of SDC | ||
# Allowed values: | ||
# true: enable renaming | ||
# false: disable renaming | ||
# Default value: "false" | ||
enabled: false | ||
# "prefix" defines a string for the new name of the SDC. | ||
# "prefix" + "worker_node_hostname" should not exceed 31 chars. | ||
# Default value: none | ||
# Examples: "rhel-sdc", "sdc-test" | ||
prefix: "sdc-test" | ||
``` | ||
The renameSDC section is going to be used by the Node Service, it has two keys enabled and prefix: | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Do we need to mention Node Service in the documentation? That is internal to our implementation right? |
||
* `enabled`: Boolean variable that specifies if the renaming for SDC is to be carried out or not. Is true then the driver will perform the rename operation. By default, its value will be false. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. correct the typo from Is True to If True There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. done |
||
* `prefix`: string variable that is used to set the prefix for SDC name. | ||
|
||
Now based on these two keys, there are certain scenarios on which the driver is going to perform the rename SDC operation: | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. You can remove "Now". Based on these two keys, the driver will perform the rename SDC operation as described below: There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. done There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can you change it to "Based on these two keys, the driver will perform the rename SDC operation as described below", does it make sense? |
||
* If enabled and prefix given then set the prefix+worker_node_name for SDC name. | ||
* If enabled and prefix not given then set worker_node_name for SDC name. | ||
|
||
> NOTE: name of the SDC cannot be more than 31 characters, hence the prefix given and the worker node hostname name taken should be such that the total length does not exceed 31 character limit. | ||
|
||
## Pre-approving SDC by GUID | ||
|
||
Starting in version 2.6, the CSI Driver for PowerFlex now supports renaming the SDCs. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This line should say approving sdc by guid, renaming SDC was previous section There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Changes done. |
||
CSI PowerFlex driver should be able to detect/read the SDC mode from the PowerFlex array and determine whether requests for SDC approval be made to the array prior to publishing a volume. This is specific to each SDC. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I would avoid "should", gives the impression that it is best try. I would rephrase as "CSI PowerFlex driver will detect the SDC mode set on the PowerFlex array and will request SDC approval from the array prior to publishing a volume" There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. done |
||
|
||
```yaml | ||
# "node" allows to configure node specific parameters | ||
node: | ||
... | ||
... | ||
|
||
# "approveSDC" defines the approve operation for SDC | ||
# Default value: None | ||
approveSDC: | ||
# enabled: Enable/Disable SDC approval | ||
#Allowed values: | ||
# true: Driver will attempt to approve restricted SDC by GUID during setup | ||
# false: Driver will not attempt to approve restricted SDC by GUID during setup | ||
# Default value: false | ||
enabled: false | ||
``` | ||
|
||
If SDC approval is denied, then provisioning of the volume should not be attempted and the appropriate error message is reported in the logs/events so the user is informed. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. change "the" to "an" appropriate. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. done |
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.
Minor: CSI driver for PowerFlex will support renaming of SDCs.
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.
done