Skip to content
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

Secret update for Powerflex driver #971

Merged
merged 1 commit into from
Feb 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions content/docs/deployment/csmoperator/drivers/powerflex.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ For detailed PowerFlex installation procedure, see the _Dell PowerFlex Deploymen
```yaml
# Username for accessing PowerFlex system.
# If authorization is enabled, username will be ignored.
- username: "admin"
- username: "admin"
# Password for accessing PowerFlex system.
# If authorization is enabled, password will be ignored.
password: "password"
Expand Down Expand Up @@ -121,7 +121,7 @@ For detailed PowerFlex installation procedure, see the _Dell PowerFlex Deploymen

```bash

kubectl create secret generic vxflexos-config -n vxflexos --from-file=config=config.yaml -o yaml --dry-run=client | kubectl replace -f -
kubectl create secret generic vxflexos-config -n vxflexos --from-file=config=secret.yaml -o yaml --dry-run=client | kubectl replace -f -
```

### Install Driver
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ Note that the namespace can be any user-defined name that follows the convention
| skipCertificateValidation | Determines if the driver is going to validate certs while connecting to PowerFlex REST API interface. | true | true |
| isDefault | An array having isDefault=true is for backward compatibility. This parameter should occur once in the list. | false | false |
| mdm | mdm defines the MDM(s) that SDC should register with on start. This should be a list of MDM IP addresses or hostnames separated by comma. | true | - |
| nasName | nasName defines what NAS should be used for NFS volumes. NFS volumes are supported on arrays version 4.0.x | false | none |
| nasName | nasName defines what NAS should be used for NFS volumes. NFS volumes are supported on arrays version >=4.0.x | false | "" |

Example: `samples/secret.yaml`

Expand Down
Loading