Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ Tips:
In your environment's OpenBao/Vault UI (see [Managing Environment Secrets](/deploy-applications/manage-environment-secrets)), create a secret at a dedicated path:

- Path: `secret/<your-app>-tls`
- Key `tls_crt`: contents of `fullchain.pem`
- Key `tls_key`: contents of `privkey.pem`
- Key `tls.crt`: contents of `fullchain.pem`
- Key `tls.key`: contents of `privkey.pem`

## Step 3 — Reference it from your application values

Expand All @@ -71,11 +71,11 @@ externalSecret:
"tls.crt":
remoteRef:
key: secret/<your-app>-tls
property: tls_crt
property: tls.crt
"tls.key":
remoteRef:
key: secret/<your-app>-tls
property: tls_key
property: tls.key

ingress:
enabled: true
Expand Down
Loading