Skip to content

Commit

Permalink
update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
LeoQuote authored Apr 11, 2024
1 parent 6c7ec6c commit 6c4cffa
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions charts/dify/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,22 @@ The minimal configure provided above is sufficient for experiment but **without
You **must do** the following extra work before put it into production!!


### Protect Sensitive info with secret
Environment variable like `SECRET_KEY` could be harmful if leaked, it is adviced to protect them using secret or csi volume.

The example of using secret is like
```
global:
extraBackendEnvs:
- name: SECRET_KEY
valueFrom:
secretKeyRef:
name: dify
key: SECRET_KEY
```

Read more: https://kubernetes.io/docs/concepts/security/secrets-good-practices/

### External postgresql

1. set the `postgresql.embedded` to `false`
Expand Down

0 comments on commit 6c4cffa

Please sign in to comment.