Skip to content

Commit 5db8d09

Browse files
authored
chore(deployment): add certificate validity to file CA example (#1084)
Signed-off-by: Jose I. Paris <[email protected]>
1 parent 8f9792b commit 5db8d09

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

deployment/chainloop/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -371,12 +371,12 @@ secretsBackend:
371371
*This feature is experimental, as it doesn't yet support verification.*
372372

373373
You can enable keyless signing mode by providing a custom Certificate Authority.
374-
For example, these commands generate a self-signed certificate with an RSA private key of length 4096 and AES256 encryption:
374+
For example, these commands generate a self-signed certificate with an RSA private key of length 4096 and AES256 encryption with a validity of 365 days:
375375

376376
```bash
377377
> openssl genrsa -aes256 -out ca.key 4096
378378
...
379-
> openssl req -new -x509 -sha256 -key ca.key -out ca.crt
379+
> openssl req -new -x509 -sha256 -key ca.key -out ca.crt -days 365
380380
...
381381
```
382382

0 commit comments

Comments
 (0)