Skip to content

Commit

Permalink
Release 1.5.1 (#106)
Browse files Browse the repository at this point in the history
* Issue #000 fix: backup and restore shell scripts for elasticsearch

* Issue #00 chore: added new variables

* Issue #88 chore:Increase request per hour limit for framework API (#95)

* Issue #88 chore:Increase request per hour limit for framework create API

* Issue #88 chore:Increase request per hour limit for framework create API

* Issue #73 fix: installing java specific version

* Issue #000 fix: backup and restore shell scripts for elasticsearch

* Issue #158 chore:Merge with upstream/release-1.5.0

* Issue #67 chore:Access to channel and framework read API (#97)

* Issue #98 chore: Implementation team - API access for Course Batch mgmt #98 (#99)

* Issue #67 chore:Access to channel and framework read API

* Issue #98 chore: Implementation team - API access for Course Batch Management #98

* Issue #000 fix: backup and restore shell scripts for postgres

* Issue #000 fix: backup and restore shell scripts for postgres

* Issue #103 fix: keycloak username and password

* Issue #103 fix: keycloak username and password

* Issue #00 chore: update the versions

* Issue #00 chore: postgres database
  • Loading branch information
rjshrjndrn authored Apr 13, 2018
1 parent 3cf868b commit faad2ca
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 4 deletions.
1 change: 1 addition & 0 deletions ansible/inventories/sample/group_vars/postgresql-master
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@ postgresql_databases:
- name: "{{kong_postgres_database}}"
- name: "{{keycloak_postgres_database}}"
- name: "{{application_postgres_database}}"
- name: "{{badger_postgres_database}}"
13 changes: 9 additions & 4 deletions ansible/inventories/sample/group_vars/sample
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,10 @@ hub_org: sunbird

# DB CONFIGURATION
## Below passwords are used by DB install scripts when creating databases. Please use strong passwords.
application_postgres_password: "{{postgres|default(database_password)}}" #Password for Application database.
keycloak_postgres_password: "{{postgres|default(database_password)}}" #Password for Keycloak (Authentication service) database.
kong_postgres_password: "{{postgres|default(database_password)}}" #Password for Kong (API Manager) database.
application_postgres_password: "{{postgres_app_password|default(database_password)}}" #Password for Application database.
keycloak_postgres_password: "{{postgres_keycloak_password|default(database_password)}}" #Password for Keycloak (Authentication service) database.
kong_postgres_password: "{{postgres_kong_password|default(database_password)}}" #Password for Kong (API Manager) database.
badger_postgres_password: "{{postgres_badger_password|default(database_password)}}"

## Postgres configuration
swarm_address_space: "{{app_address_space}}" #Application server address space (e.g. 10.3.0.0/24), also the agentpublicSubnet if using Azure scripts provided
Expand Down Expand Up @@ -165,6 +166,10 @@ postgresql_users:
password: "{{application_postgres_password}}"
db: "{{application_postgres_database}}"
priv: "ALL"
- name: "{{badger_postgres_user}}"
password: "{{badger_postgres_password}}"
db: "{{badger_postgres_database}}"
priv: "ALL"


proxy_replicas: 1
Expand Down Expand Up @@ -199,7 +204,7 @@ content_limit_memory: 256M

#badger
badger_postgres_user: badger
badger_postgres_password: "{{database_password}}"
badger_postgres_password: "{{postgres|default(database_password)}}"
badger_postgres_database: badger
badger_host: "{{ groups['postgresql-master'][0]}}"
badger_replicas: 1
Expand Down
8 changes: 8 additions & 0 deletions deploy/config
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,14 @@ swarm_node_host:
keycloak_host:
log_es_host:

postgres_keycloak_password:
postgres_app_password:
postgres_kong_password:
postgres_badger_password:




sunbird_telemetry_pdata_id: #some telemetry id which should available in ekstep
sunbird_installation_email:

Expand Down

0 comments on commit faad2ca

Please sign in to comment.