We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a6b155f commit b2c1ac8Copy full SHA for b2c1ac8
docs/bring-your-own-certificates.md
@@ -18,9 +18,9 @@ export SECRETNAME="mycustomkeys"
18
```
19
20
## Generate a new RSA key pair (certificates)
21
-
+* Note to change `-days` option to set certificate expiry date; default is 1 year
22
```bash
23
-openssl req -x509 -nodes -newkey rsa:4096 -keyout "$PRIVATEKEY" -out "$PUBLICKEY" -subj "/CN=sealed-secret/O=sealed-secret"
+openssl req -x509 -days 365 -nodes -newkey rsa:4096 -keyout "$PRIVATEKEY" -out "$PUBLICKEY" -subj "/CN=sealed-secret/O=sealed-secret"
24
25
26
## Create a tls k8s secret, using your recently created RSA key pair
0 commit comments