Skip to content

Commit

Permalink
Merge pull request #2046 from w3f/will-worker-additions
Browse files Browse the repository at this point in the history
Add More Validators
  • Loading branch information
wpank committed Oct 22, 2022
2 parents 49082b0 + 4b25908 commit eb59988
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 5 deletions.
2 changes: 1 addition & 1 deletion charts/otv-backend/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
description: 1K Validators Backend
name: otv-backend
version: v2.6.88
version: v2.6.89
apiVersion: v2
2 changes: 1 addition & 1 deletion charts/otv-backend/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ resources:

image:
repo: web3f/otv-backend
tag: 2.6.88
tag: 2.6.89

certificate:
enabled: true
Expand Down
4 changes: 2 additions & 2 deletions helmfile.d/10-otv-backend.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ releases:
namespace: kusama
{{ if eq .Environment.Name "production" }}
chart: w3f/otv-backend
version: v2.6.88
version: v2.6.89
{{ else }}
chart: ../charts/otv-backend
{{ end }}
Expand All @@ -30,7 +30,7 @@ releases:
namespace: polkadot
{{ if eq .Environment.Name "production" }}
chart: w3f/otv-backend
version: v2.6.88
version: v2.6.89
{{ else }}
chart: ../charts/otv-backend
{{ end }}
Expand Down
5 changes: 5 additions & 0 deletions helmfile.d/config/kusama/otv-backend-prod.yaml.gotmpl
Original file line number Diff line number Diff line change
Expand Up @@ -2884,6 +2884,11 @@ config: |
"name": "Leostake",
"stash": "HNGMhUpVnZjuJ3kQcBAMF4KVywdkk2SCxQ4TAt6QBKtMCFh",
"riotHandle": "@leostake:matrix.org"
},
{
"name": "ERN VENTURES-02",
"stash": "Gjv9ZGF9Sz5GEixULU7Dmq7z8zVRmQFj2Y31qfpwbhsvo76",
"riotHandle": "@ernventures:matrix.org"
}
],
"forceRound": false,
Expand Down
14 changes: 14 additions & 0 deletions helmfile.d/config/polkadot/otv-backend-prod.yaml.gotmpl
Original file line number Diff line number Diff line change
Expand Up @@ -1267,6 +1267,20 @@ config: |
"stash": "13NbzR1jse1FgB699sTDSfHUB4bqec1xKt7my7cXiL8oGd4w",
"kusamaStash": "EUYfsTNCCVJbrq7YjT4xbxWB8GX1j7nRZiuziQVj9mjFSdP",
"riotHandle": "@dotskull:matrix.org"
},
{
"name": "UT Fintech Lab",
"stash": "1uvodkTYJDYbdBEX8qVuW79fo4g9KQyE3dd8b6x3ZbR4ept",
"kusamaStash": "HD3uoRSHiGftXfWe31Gp44yezjuaqfRX5izjg3k2wSYoCTd",
"riotHandle": "",
"skipSelfStake": true
},
{
"name": "Munich | validierung_cc 🇩🇪",
"stash": "15x643ScnbVQM3zGcyRw3qVtaCoddmAfDv5LZVfU8fNxkVaR",
"kusamaStash": "JHamburgTPv9fRKwTPeBEjyVHmbQK2ayRBpBujb4rx2sHzJ",
"riotHandle": ["@kev.funke:matrix.org", "@bkzland:matrix.org"],
"skipSelfStake": true
}
],
"forceRound": false,
Expand Down
2 changes: 1 addition & 1 deletion packages/core/src/scorekeeper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -552,7 +552,7 @@ export default class ScoreKeeper {

// Start all Cron Jobs
try {
if (this.config.redis.host && this.config.redis.port) {
if (this.config?.redis?.host && this.config?.redis?.port) {
// Jobs get run in separate worker
logger.info(
`{Scorekeeper::Workers} Starting bullmq Queues and Workers....`
Expand Down

0 comments on commit eb59988

Please sign in to comment.