Skip to content

Commit

Permalink
Document how to set sensitive values (#4137)
Browse files Browse the repository at this point in the history
* Document how to set sensitive values

* Update helm.md
  • Loading branch information
d80tb7 authored Jan 14, 2025
1 parent fc7936f commit 7975777
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions docs/helm.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,16 @@ applicationConfig:
armadaUrl: "server.url.com:443"
```
**Note:** The values you enter in this section will be placed into a K8s configmap. For senistive values (e.g. database passwords) we recommend setting them as environmental variables from a non-helm managed secret:
```yaml
env:
- name: ARMADA_POSTGRES_CONNECTION_PASSWORD
valueFrom:
secretKeyRef:
key: password
name: lookout-postgres-password
```
#### Credentials
##### Open Id
Expand Down

0 comments on commit 7975777

Please sign in to comment.