mirror of
https://github.com/atuinsh/atuin.git
synced 2024-11-22 00:03:49 +01:00
f946644ceb
* add kubernetes instructions * minor wording improvements * better password instructions * add information about changed port * improved grammar * Separate docker and k8s docs Add k8s folder for kubernetes configs
14 lines
319 B
YAML
14 lines
319 B
YAML
apiVersion: v1
|
|
kind: Secret
|
|
metadata:
|
|
name: atuin-secrets
|
|
type: Opaque
|
|
stringData:
|
|
ATUIN_DB_USERNAME: atuin
|
|
ATUIN_DB_PASSWORD: seriously-insecure
|
|
ATUIN_HOST: "127.0.0.1"
|
|
ATUIN_PORT: "8888"
|
|
ATUIN_OPEN_REGISTRATION: "true"
|
|
ATUIN_DB_URI: "postgres://atuin:seriously-insecure@localhost/atuin"
|
|
immutable: true
|