Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update default values documentation #41

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
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
13 changes: 13 additions & 0 deletions values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,12 @@ georchestra:
git:
url: https://github.com/georchestra/datadir.git
ref: docker-master
# use your own ssh key. Generate it with :
# `ssh-keygen -t rsa -b 4096 -C "[email protected]" -f id_rsa`
# push the public key on your github : https://docs.github.com/fr/authentication/connecting-to-github-with-ssh/adding-a-new-ssh-key-to-your-github-account
# and create secret like this :
# `kubectl create secret generic my-private-ssh-key --from-file=ssh-privatekey=id_rsa --from-file=ssh-publickey=id_rsa.pub`
# ennaled it with the newt line
# ssh_secret: my-private-ssh-key
# Some cloud providers automatically create & assign PVs to PVCs
# some other need to create a PV first ; if so, then you can
Expand Down Expand Up @@ -199,6 +205,13 @@ database:
tag: latest
auth:
database: georchestra
# you can use existing secret for you own postgreesql DB
# to use it, you must define this keys :
# - host
# - port
# - dbname
# - user
# - password
# existingSecret: mysecret
# host: georchestra
password: georchestra
Expand Down