Skip to content

Commit

Permalink
Powermax doc update on reverse proxy cert (#1431)
Browse files Browse the repository at this point in the history
  • Loading branch information
karthikk92 authored Jan 27, 2025
1 parent 34cc99a commit 1209497
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion content/docs/deployment/csmoperator/drivers/powermax.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,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
6 changes: 4 additions & 2 deletions content/docs/deployment/helm/drivers/installation/powermax.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,15 +62,17 @@ O = Default Company Ltd
subjectAltName = @alt_names

[ alt_names ]
DNS.1 = "powermax-reverseproxy"
DNS.1 = "csipowermax-reverseproxy"
IP.1 = "0.0.0.0"
```
Use a tool such as `openssl` to generate this secret using the example below:

Generate the CSR and Self-Signed Certificate:
```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
```

### Install Helm 3
Expand Down

0 comments on commit 1209497

Please sign in to comment.