Skip to content
Snippets Groups Projects
Commit 11e33d73 authored by Mart van Santen's avatar Mart van Santen
Browse files

Update documentation

parent 474efecd
No related branches found
No related tags found
1 merge request!46Add kratos container
Pipeline #9123 passed with stages
in 1 minute and 16 seconds
This commit is part of merge request !46. Comments created here will be created in the context of that merge request.
......@@ -51,7 +51,41 @@ helm get values single-sign-on -n oas > /to/a/path/my_cluster_values.yaml
helm dep update
```
4. Install the single-sign-on helmchart with kratos service
4. Configure variables
Currently the is a default password configured for postgresql in `values.yaml`.
It is advised to change this password before installation.
The password can be found at:
```
postgresql:
postgresqlDatabase: kratos
postgresqlUsername: kratos
postgresqlPassword: ChangeThisPassword
```
Please make sure it is in sync with the password at
```
kratos:
kratos:
config:
dsn: postgres://kratos:ChangeThisPassword@single-sign-on-postgresql:5432/kratos
```
Same is true for the SMTP service, this config entry can be found at:
```
kratos:
kratos:
config:
courier:
smtp:
connection_uri: smtps://username:password@smtp.example.com:456/
```
5. Install the single-sign-on helmchart with kratos service
```
cd helmchart/single-sign-on
......
......@@ -79,10 +79,6 @@ postgresql:
annotations: {}
postgresqlDatabase: kratos
postgresqlUsername: kratos
# This will be overwritten during installation. If this helm
# chart is installed manual, this should be randomized or altered. If you
# change this, make sure the config part under kratos/kratos/config/dsn is in
# sync with this entry
postgresqlPassword: kratos
kratos:
......@@ -175,7 +171,7 @@ kratos:
courier:
smtp:
connection_uri: smtps://kratos:kratos@smtp.greenhost.nl:465/
connection_uri: smtps://username:password@smtp.example.com:456/
hydra:
maester:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment