Skip to content

Commit

Permalink
chore(deployment): add certificate validity to file CA example (#1084)
Browse files Browse the repository at this point in the history
Signed-off-by: Jose I. Paris <[email protected]>
  • Loading branch information
jiparis authored Jul 8, 2024
1 parent 8f9792b commit 5db8d09
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions deployment/chainloop/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -371,12 +371,12 @@ secretsBackend:
*This feature is experimental, as it doesn't yet support verification.*

You can enable keyless signing mode by providing a custom Certificate Authority.
For example, these commands generate a self-signed certificate with an RSA private key of length 4096 and AES256 encryption:
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:

```bash
> openssl genrsa -aes256 -out ca.key 4096
...
> openssl req -new -x509 -sha256 -key ca.key -out ca.crt
> openssl req -new -x509 -sha256 -key ca.key -out ca.crt -days 365
...
```

Expand Down

0 comments on commit 5db8d09

Please sign in to comment.