Skip to content

Commit

Permalink
Merge branch 'main' into update_codeowners
Browse files Browse the repository at this point in the history
  • Loading branch information
santhoshatdell authored Nov 15, 2024
2 parents 8075050 + db35026 commit 04184ba
Show file tree
Hide file tree
Showing 15 changed files with 36 additions and 42 deletions.
16 changes: 8 additions & 8 deletions content/docs/deployment/csmoperator/drivers/powermax.md
Original file line number Diff line number Diff line change
Expand Up @@ -353,27 +353,27 @@ Create a secret named powermax-certs in the namespace where the CSI PowerMax dri
primaryURL: https://primary-1.unisphe.re:8443 # primary unisphere for arrayID
backupURL: https://backup-1.unisphe.re:8443 # backup unisphere for arrayID
proxyCredentialSecrets:
- proxy-secret-11 # credential secret for primary unisphere, e.g., powermax-creds
- proxy-secret-12 # credential secret for backup unisphere, e.g., powermax-creds
- primary-unisphere-secret-1 # credential secret for primary unisphere, e.g., powermax-creds
- backup-unisphere-secret-1 # credential secret for backup unisphere, e.g., powermax-creds
- storageArrayId: "000000000002"
primaryURL: https://primary-2.unisphe.re:8443
backupURL: https://backup-2.unisphe.re:8443
proxyCredentialSecrets:
- proxy-secret-21
- proxy-secret-22
- primary-unisphere-secret-2
- backup-unisphere-secret-2
managementServers:
- url: https://primary-1.unisphe.re:8443 # primary unisphere endpoint
arrayCredentialSecret: primary-1-secret # primary credential secret e.g., powermax-creds
arrayCredentialSecret: primary-unisphere-secret-1 # primary credential secret e.g., powermax-creds
skipCertificateValidation: true
- url: https://backup-1.unisphe.re:8443 # backup unisphere endpoint
arrayCredentialSecret: backup-1-secret # backup credential secret e.g., powermax-creds
arrayCredentialSecret: backup-unisphere-secret-1 # backup credential secret e.g., powermax-creds
skipCertificateValidation: false # value false, to verify unisphere certificate and provide certSecret
certSecret: primary-certs # unisphere verification certificate
- url: https://primary-2.unisphe.re:8443
arrayCredentialSecret: primary-2-secret
arrayCredentialSecret: primary-unisphere-secret-2
skipCertificateValidation: true
- url: https://backup-2.unisphe.re:8443
arrayCredentialSecret: backup-2-secret
arrayCredentialSecret: backup-unisphere-secret-2
skipCertificateValidation: false
certSecret: primary-certs
```
Expand Down
16 changes: 8 additions & 8 deletions content/docs/deployment/helm/drivers/installation/powermax.md
Original file line number Diff line number Diff line change
Expand Up @@ -347,11 +347,11 @@ CRDs should be configured during replication prepare stage with repctl as descri
|defaultCredentialsSecret| This secret name refers to:<br> 1 The proxy credentials if the driver is installed with proxy in StandAlone mode.<br>2. The default Unisphere credentials if credentialsSecret is not specified for a management server. | Yes | powermax-creds |
| storageArrays| This section refers to the list of arrays managed by the driver and Reverse Proxy in StandAlone mode. | - | - |
| storageArrayId | This refers to PowerMax Symmetrix ID. | Yes | 000000000001|
| endpoint | This refers to the URL of the Unisphere server managing _storageArrayId_. If authorization is enabled, endpoint should be the HTTPS localhost endpoint that the authorization sidecar will listen on | Yes if Reverse Proxy mode is _StandAlone_ | https://primary-1.unisphe.re:8443 |
| backupEndpoint | This refers to the URL of the backup Unisphere server managing _storageArrayId_, if Reverse Proxy is installed in _StandAlone_ mode. If authorization is enabled, backupEndpoint should be the HTTPS localhost endpoint that the authorization sidecar will listen on | Yes | https://backup-1.unisphe.re:8443 |
| endpoint | This refers to the URL of the Unisphere server managing _storageArrayId_. If authorization is enabled, endpoint should be the HTTPS localhost endpoint that the authorization sidecar will listen on | Yes if Reverse Proxy mode is _StandAlone_ | https\://primary-1.unisphe.re:8443 |
| backupEndpoint | This refers to the URL of the backup Unisphere server managing _storageArrayId_, if Reverse Proxy is installed in _StandAlone_ mode. If authorization is enabled, backupEndpoint should be the HTTPS localhost endpoint that the authorization sidecar will listen on | Yes | https\://backup-1.unisphe.re:8443 |
| managementServers | This section refers to the list of configurations for Unisphere servers managing powermax arrays. | - | - |
| endpoint | This refers to the URL of the Unisphere server. If authorization is enabled, endpoint should be the HTTPS localhost endpoint that the authorization sidecar will listen on | Yes | https://primary-1.unisphe.re:8443 |
| credentialsSecret| This refers to the user credentials for _endpoint_ | Yes| primary-1-secret|
| endpoint | This refers to the URL of the Unisphere server. If authorization is enabled, endpoint should be the HTTPS localhost endpoint that the authorization sidecar will listen on | Yes | https\://primary-1.unisphe.re:8443 |
| credentialsSecret| This refers to the user credentials for _endpoint_ | Yes| primary-unisphere-secret-1|
| skipCertificateValidation | This parameter should be set to false if you want to do client-side TLS verification of Unisphere for PowerMax SSL certificates. | No | "True" |
| certSecret | The name of the secret in the same namespace containing the CA certificates of the Unisphere server | Yes, if skipCertificateValidation is set to false | Empty|
| limits | This refers to various limits for Reverse Proxy | No | - |
Expand Down Expand Up @@ -472,7 +472,7 @@ global:
backupEndpoint: https://backup-2.unisphe.re:8443
managementServers:
- endpoint: https://primary-1.unisphe.re:8443
credentialsSecret: primary-1-secret
credentialsSecret: primary-unisphere-secret-1
skipCertificateValidation: false
certSecret: primary-cert
limits:
Expand All @@ -481,13 +481,13 @@ global:
maxOutStandingRead: 50
maxOutStandingWrite: 50
- endpoint: https://backup-1.unisphe.re:8443
credentialsSecret: backup-1-secret
credentialsSecret: backup-unisphere-secret-1
skipCertificateValidation: true
- endpoint: https://primary-2.unisphe.re:8443
credentialsSecret: primary-2-secret
credentialsSecret: primary-unisphere-secret-2
skipCertificateValidation: true
- endpoint: https://backup-2.unisphe.re:8443
credentialsSecret: backup-2-secret
credentialsSecret: backup-unisphere-secret-2
skipCertificateValidation: true
# "csireverseproxy" refers to the subchart csireverseproxy
Expand Down
6 changes: 3 additions & 3 deletions content/v1/deployment/helm/drivers/installation/powermax.md
Original file line number Diff line number Diff line change
Expand Up @@ -293,10 +293,10 @@ CRDs should be configured during replication prepare stage with repctl as descri
|defaultCredentialsSecret| This secret name refers to:<br> 1 The proxy credentials if the driver is installed with proxy in StandAlone mode.<br>2. The default Unisphere credentials if credentialsSecret is not specified for a management server. | Yes | powermax-creds |
| storageArrays| This section refers to the list of arrays managed by the driver and Reverse Proxy in StandAlone mode. | - | - |
| storageArrayId | This refers to PowerMax Symmetrix ID. | Yes | 000000000001|
| endpoint | This refers to the URL of the Unisphere server managing _storageArrayId_. If authorization is enabled, endpoint should be the HTTPS localhost endpoint that the authorization sidecar will listen on | Yes if Reverse Proxy mode is _StandAlone_ | https://primary-1.unisphe.re:8443 |
| backupEndpoint | This refers to the URL of the backup Unisphere server managing _storageArrayId_, if Reverse Proxy is installed in _StandAlone_ mode. If authorization is enabled, backupEndpoint should be the HTTPS localhost endpoint that the authorization sidecar will listen on | Yes | https://backup-1.unisphe.re:8443 |
| endpoint | This refers to the URL of the Unisphere server managing _storageArrayId_. If authorization is enabled, endpoint should be the HTTPS localhost endpoint that the authorization sidecar will listen on | Yes if Reverse Proxy mode is _StandAlone_ | https\://primary-1.unisphe.re:8443 |
| backupEndpoint | This refers to the URL of the backup Unisphere server managing _storageArrayId_, if Reverse Proxy is installed in _StandAlone_ mode. If authorization is enabled, backupEndpoint should be the HTTPS localhost endpoint that the authorization sidecar will listen on | Yes | https\://backup-1.unisphe.re:8443 |
| managementServers | This section refers to the list of configurations for Unisphere servers managing powermax arrays. | - | - |
| endpoint | This refers to the URL of the Unisphere server. If authorization is enabled, endpoint should be the HTTPS localhost endpoint that the authorization sidecar will listen on | Yes | https://primary-1.unisphe.re:8443 |
| endpoint | This refers to the URL of the Unisphere server. If authorization is enabled, endpoint should be the HTTPS localhost endpoint that the authorization sidecar will listen on | Yes | https\://primary-1.unisphe.re:8443 |
| credentialsSecret| This refers to the user credentials for _endpoint_ | Yes| primary-1-secret|
| skipCertificateValidation | This parameter should be set to false if you want to do client-side TLS verification of Unisphere for PowerMax SSL certificates. | No | "True" |
| certSecret | The name of the secret in the same namespace containing the CA certificates of the Unisphere server | Yes, if skipCertificateValidation is set to false | Empty|
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,7 @@ yum install -y container-selinux

### Dark Sites

For environments where `yum` will not work, obtain the supported version of container-selinux for your OS version and install it.

The container-selinux RPMs for CentOS/RedHat 7 and 8 can be downloaded from [https://centos.pkgs.org/7/centos-extras-x86_64/](https://centos.pkgs.org/7/centos-extras-x86_64/) and [https://centos.pkgs.org/8-stream/centos-appstream-x86_64/](https://centos.pkgs.org/8-stream/centos-appstream-x86_64/), respectively.
For environments where the package manager `yum` is not available, ensure that you install a supported version of `container-selinux` package that is suitable for your Linux distribution.

## Deploying the CSM Authorization Proxy Server

Expand Down
2 changes: 1 addition & 1 deletion content/v2/deployment/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ The Container Storage Modules and the required CSI Drivers can each be deployed


{{% cardpane %}}
{{< card header="[Dell CSI Drivers Installation via Helm](../csidriver/installation/helm)"
{{< card header="[Dell CSI Drivers Installation via Helm](helm/drivers/installation/)"
footer="Installs [PowerStore](helm/drivers/installation/powerstore/) [PowerMax](helm/drivers/installation/powermax/) [PowerScale](helm/drivers/installation/isilon/) [PowerFlex](helm/drivers/installation/powerflex/) [Unity XT](helm/drivers/installation/unity/)">}}
Dell CSI Helm installer installs the CSI Driver components using the provided Helm charts.
[...More on installation instructions](helm/drivers/installation/)
Expand Down
6 changes: 3 additions & 3 deletions content/v2/deployment/helm/drivers/installation/powermax.md
Original file line number Diff line number Diff line change
Expand Up @@ -271,10 +271,10 @@ CRDs should be configured during replication prepare stage with repctl as descri
|defaultCredentialsSecret| This secret name refers to:<br> 1 The proxy credentials if the driver is installed with proxy in StandAlone mode.<br>2. The default Unisphere credentials if credentialsSecret is not specified for a management server.| Yes | powermax-creds |
| storageArrays| This section refers to the list of arrays managed by the driver and Reverse Proxy in StandAlone mode.| - | - |
| storageArrayId | This refers to PowerMax Symmetrix ID.| Yes | 000000000001|
| endpoint | This refers to the URL of the Unisphere server managing _storageArrayId_. If authorization is enabled, endpoint should be the HTTPS localhost endpoint that the authorization sidecar will listen on| Yes if Reverse Proxy mode is _StandAlone_ | https://primary-1.unisphe.re:8443 |
| backupEndpoint | This refers to the URL of the backup Unisphere server managing _storageArrayId_, if Reverse Proxy is installed in _StandAlone_ mode. If authorization is enabled, backupEndpoint should be the HTTPS localhost endpoint that the authorization sidecar will listen on| Yes | https://backup-1.unisphe.re:8443 |
| endpoint | This refers to the URL of the Unisphere server managing _storageArrayId_. If authorization is enabled, endpoint should be the HTTPS localhost endpoint that the authorization sidecar will listen on| Yes if Reverse Proxy mode is _StandAlone_ | https\://primary-1.unisphe.re:8443 |
| backupEndpoint | This refers to the URL of the backup Unisphere server managing _storageArrayId_, if Reverse Proxy is installed in _StandAlone_ mode. If authorization is enabled, backupEndpoint should be the HTTPS localhost endpoint that the authorization sidecar will listen on| Yes | https\://backup-1.unisphe.re:8443 |
| managementServers | This section refers to the list of configurations for Unisphere servers managing powermax arrays.| - | - |
| endpoint | This refers to the URL of the Unisphere server. If authorization is enabled, endpoint should be the HTTPS localhost endpoint that the authorization sidecar will listen on | Yes | https://primary-1.unisphe.re:8443 |
| endpoint | This refers to the URL of the Unisphere server. If authorization is enabled, endpoint should be the HTTPS localhost endpoint that the authorization sidecar will listen on | Yes | https\://primary-1.unisphe.re:8443 |
| credentialsSecret| This refers to the user credentials for _endpoint_ | Yes| primary-1-secret|
| skipCertificateValidation | This parameter should be set to false if you want to do client-side TLS verification of Unisphere for PowerMax SSL certificates.| No | "True" |
| certSecret | The name of the secret in the same namespace containing the CA certificates of the Unisphere server | Yes, if skipCertificateValidation is set to false | Empty|
Expand Down
Loading

0 comments on commit 04184ba

Please sign in to comment.