Skip to content

Commit

Permalink
Updating the doc for v3 as this changes required for 1.13 version
Browse files Browse the repository at this point in the history
  • Loading branch information
karthikk92 committed Jan 23, 2025
1 parent b1b1cdd commit 8c8d925
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions content/v3/deployment/csmoperator/drivers/powermax.md
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,6 @@ CSI PowerMax ReverseProxy is a component that will be installed with the CSI Pow

#### Pre-requisites
Create a TLS secret that holds an SSL certificate and a private key. This is required by the reverse proxy server.
Use a tool such as `openssl` to generate this secret using the example below:

Create the Configuration file (openssl.cnf) which includes the subjectAltName:
```bash
Expand All @@ -219,7 +218,7 @@ Use a tool such as `openssl` to generate this secret using the example below:
```bash
openssl genrsa -out tls.key 2048
openssl req -new -key tls.key -out tls.csr -config openssl.cnf
openssl x509 -req -in tls.csr -signkey tls.key -out tls.crt -days 3650 -extensions v3_req -extfile openssl.cnf
openssl x509 -req -in tls.csr -signkey tls.key -out tls.crt -days 3650 -extensions req_ext -extfile openssl.cnf
kubectl create secret -n <namespace> tls csirevproxy-tls-secret --cert=tls.crt --key=tls.key
```

Expand Down

0 comments on commit 8c8d925

Please sign in to comment.