-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* changed docker container versions * central ledger service into centraleventprocessor; version bumped to 4.1.1 * small fixes
- Loading branch information
Showing
12 changed files
with
109 additions
and
78 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6006,7 +6006,7 @@ emailnotifier: | |
replicaCount: 1 | ||
image: | ||
repository: mojaloop/email-notifier | ||
tag: v4.1.0 | ||
tag: v4.1.1 | ||
pullPolicy: Always | ||
init: | ||
enabled: true | ||
|
@@ -6035,11 +6035,26 @@ emailnotifier: | |
user: '[email protected]' | ||
pass: 'pass' | ||
ciphers: 'SSLv3' | ||
healthCheckPort: 3081 | ||
PORT: 3081 | ||
## App Configuration Template | ||
# default_json config for nodejs. The following variables will be injected by the helm chart (see config.yaml): $service_api_port, $service_admin_port, $ingress_host, $forensicloggingsidecar_host, $forensicloggingsidecar_port, $kafka_host, $kafka_port | ||
default_json: | | ||
{ | ||
"emailSettings": { | ||
"smtpConfig": { | ||
"host": "$email_host", | ||
"port": $email_port, | ||
"secureConnection": false, | ||
"tls": { | ||
"ciphers": "$email_tls_ciphers" | ||
}, | ||
"auth": { | ||
"user": "$email_user", | ||
"pass": "$email_pass" | ||
} | ||
} | ||
}, | ||
"PORT": $port, | ||
"KAFKA": { | ||
"TOPIC_TEMPLATES": { | ||
"NOTIFICATION_TOPIC_TEMPLATE": { | ||
|
@@ -6114,22 +6129,7 @@ emailnotifier: | |
} | ||
} | ||
} | ||
}, | ||
"emailSettings": { | ||
"smtpConfig": { | ||
"host": "$email_host", | ||
"port": $email_port, | ||
"secureConnection": false, | ||
"tls": { | ||
"ciphers": "$email_tls_ciphers" | ||
}, | ||
"auth": { | ||
"user": "$email_user", | ||
"pass": "$email_pass" | ||
} | ||
} | ||
}, | ||
"healthCheckPort": $port | ||
} | ||
} | ||
init: | ||
|
@@ -6204,7 +6204,7 @@ centraleventprocessor: | |
replicaCount: 1 | ||
image: | ||
repository: mojaloop/central-event-processor | ||
tag: v4.1.0 | ||
tag: v4.1.1 | ||
pullPolicy: Always | ||
|
||
init: | ||
|
@@ -6299,12 +6299,16 @@ centraleventprocessor: | |
# this can be set if the dependency chart for kafka is disabled. If 'kafka_host' is commented out, then the name of the dependency chart will be used. | ||
kafka_host: '$release_name-kafka' | ||
kafka_port: 9092 | ||
healthCheckPort: 3080 | ||
PORT: 3080 | ||
mongo_host: '$release_name-mongodb' | ||
mongo_port: 27017 | ||
mongo_username: mojaloop | ||
mongo_database: mojaloop | ||
mongo_password: password | ||
central_ledger_admin_host: 'centralledger-service' | ||
central_ledger_admin_port: 3001 | ||
central_ledger_api_host: 'centralledger-service' | ||
central_ledger_api_port: 3000 | ||
## App Configuration Template | ||
# default_json config for nodejs. The following variables will be injected by the helm chart (see config.yaml): $service_api_port, $service_admin_port, $ingress_host, $forensicloggingsidecar_host, $forensicloggingsidecar_port, $kafka_host, $kafka_port | ||
|
||
|
@@ -6321,6 +6325,13 @@ centraleventprocessor: | |
}, | ||
"expanded": "full" | ||
}, | ||
"PORT": $port, | ||
"centralLedgerAPI": { | ||
"adminHost": "$central_ledger_admin_host", | ||
"adminPort": $central_ledger_admin_port, | ||
"apiHost": "$central_ledger_api_host", | ||
"apiPort": $central_ledger_api_port | ||
}, | ||
"mongo": { | ||
"uri": "$mongo_host:$mongo_port", | ||
"database": "$mongo_database", | ||
|
@@ -6407,8 +6418,7 @@ centraleventprocessor: | |
} | ||
} | ||
} | ||
}, | ||
"healthCheckPort": $port | ||
} | ||
} | ||
mongodb: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,7 +22,7 @@ global: | |
replicaCount: 1 | ||
image: | ||
repository: mojaloop/email-notifier | ||
tag: v4.1.0 | ||
tag: v4.1.1 | ||
pullPolicy: Always | ||
|
||
init: | ||
|
@@ -117,11 +117,26 @@ config: | |
user: '[email protected]' | ||
pass: 'pass' | ||
ciphers: 'SSLv3' | ||
healthCheckPort: 3081 | ||
PORT: 3081 | ||
## App Configuration Template | ||
# default_json config for nodejs. The following variables will be injected by the helm chart (see config.yaml): $service_api_port, $service_admin_port, $ingress_host, $forensicloggingsidecar_host, $forensicloggingsidecar_port, $kafka_host, $kafka_port | ||
default_json: | | ||
{ | ||
"emailSettings": { | ||
"smtpConfig": { | ||
"host": "$email_host", | ||
"port": $email_port, | ||
"secureConnection": false, | ||
"tls": { | ||
"ciphers": "$email_tls_ciphers" | ||
}, | ||
"auth": { | ||
"user": "$email_user", | ||
"pass": "$email_pass" | ||
} | ||
} | ||
}, | ||
"PORT": $port, | ||
"KAFKA": { | ||
"TOPIC_TEMPLATES": { | ||
"NOTIFICATION_TOPIC_TEMPLATE": { | ||
|
@@ -196,22 +211,7 @@ config: | |
} | ||
} | ||
} | ||
}, | ||
"emailSettings": { | ||
"smtpConfig": { | ||
"host": "$email_host", | ||
"port": $email_port, | ||
"secureConnection": false, | ||
"tls": { | ||
"ciphers": "$email_tls_ciphers" | ||
}, | ||
"auth": { | ||
"user": "$email_user", | ||
"pass": "$email_pass" | ||
} | ||
} | ||
}, | ||
"healthCheckPort": $port | ||
} | ||
} | ||
# kafka: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.