Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
create user opensrp with encrypted password 'secretpassword';
alter role opensrp superuser; # ignore if using postgres v13 and above
create database opensrp;
grant all privileges on database opensrp to opensrp;

Keycloak (For opensrp server web v2.2 and above otherwise skip this step)

...

Code Block
create user keycloak with encrypted password 'secretpassword';
create database keycloak;
grant all privileges on database keycloak to keycloak;

Create a values.yaml file to override the default configs with the above credentials. Refer to https://github.com/codecentric/helm-charts/blob/master/charts/keycloak/values.yaml for additional configs.

...