diff options
| author | Klas Mellbourn <klas@mellbourn.net> | 2022-06-26 20:40:36 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-06-26 18:40:36 +0000 |
| commit | f946644cebb94bb62646cce6fcf3900fe71e2bea (patch) | |
| tree | 3acb299f0d8677bc919b81aa80f9fa1db0579357 /k8s/secrets.yaml | |
| parent | Add Fig as an installation method to the README (#459) (diff) | |
| download | atuin-f946644cebb94bb62646cce6fcf3900fe71e2bea.zip | |
Add kubernetes instructions and manifests (#427)
* 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
Diffstat (limited to 'k8s/secrets.yaml')
| -rw-r--r-- | k8s/secrets.yaml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/k8s/secrets.yaml b/k8s/secrets.yaml new file mode 100644 index 00000000..d6391fad --- /dev/null +++ b/k8s/secrets.yaml @@ -0,0 +1,13 @@ +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 |
