Skip to content

Commit

Permalink
Add fallback support to oracle/keeper (#413)
Browse files Browse the repository at this point in the history
* Add fallback support to oracle/keeper

* Update back
  • Loading branch information
antares-sw authored Jul 7, 2023
1 parent 730368b commit a0d4058
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion charts/v3-backend/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v2
name: v3-backend
version: 3.1.5
version: 3.1.6
appVersion: v0.3.6
kubeVersion: "^1.20.0-0"
description: The StakeWise backend application.
Expand Down
4 changes: 2 additions & 2 deletions charts/v3-backend/templates/common-configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ data:
IPFS_PINATA_PIN_ENDPOINT: {{ .Values.settings.ipfsPinataPinEndpoints | quote }}
IPFS_FETCH_ENDPOINTS: {{ .Values.settings.ipfsFetchEndpoints | quote }}

EXECUTION_ENDPOINT: {{ .Values.settings.executionEndpoint | quote }}
CONSENSUS_ENDPOINT: {{ .Values.settings.consensusEndpoint | quote }}
EXECUTION_ENDPOINTS: {{ .Values.settings.executionEndpoints | quote }}
CONSENSUS_ENDPOINTS: {{ .Values.settings.consensusEndpoints | quote }}

SEND_TELEGRAM_NOTIFICATIONS: {{ .Values.settings.sendTelegramNotifaction | quote }}

Expand Down
2 changes: 1 addition & 1 deletion charts/v3-keeper/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v2
name: v3-keeper
version: 3.0.5
version: 3.0.6
appVersion: v0.1.0
kubeVersion: "^1.19.0-0"
description: StakeWise Keeper is used to aggregate transactions from the oracles and submit them on-chain.
Expand Down
4 changes: 2 additions & 2 deletions charts/v3-keeper/templates/configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ metadata:
data:
LOG_LEVEL: {{ .Values.settings.logLevel | quote }}
NETWORK: {{ .Values.settings.network | quote }}
EXECUTION_ENDPOINT: {{ .Values.settings.executionEndpoint | quote }}
CONSENSUS_ENDPOINT: {{ .Values.settings.consensusEndpoint | quote }}
EXECUTION_ENDPOINTS: {{ .Values.settings.executionEndpoints | quote }}
CONSENSUS_ENDPOINTS: {{ .Values.settings.consensusEndpoints | quote }}
METRICS_HOST: {{ .Values.serviceMonitor.host | quote }}
6 changes: 3 additions & 3 deletions charts/v3-keeper/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ serviceAccount:
image:
registry: "europe-west4-docker.pkg.dev"
repository: "stakewiselabs/public/v3-keeper"
tag: "v0.1.2"
tag: "master"
pullPolicy: IfNotPresent

## Credentials to fetch images from private registry
Expand All @@ -71,8 +71,8 @@ settings:
## Possible values: goerli, perm_goerli, gnosis, mainnet
##
network: "mainnet"
executionEndpoint: ""
consensusEndpoint: ""
executionEndpoints: ""
consensusEndpoints: ""
sentryDsn: ""

## Credentials
Expand Down
2 changes: 1 addition & 1 deletion charts/v3-oracle/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v2
name: v3-oracle
version: 3.1.9
version: 3.1.10
appVersion: v0.1.0
kubeVersion: "^1.14.0-0"
description: The StakeWise application for submitting off-chain data to smart contracts.
Expand Down
4 changes: 2 additions & 2 deletions charts/v3-oracle/templates/configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ data:
LOG_LEVEL: {{ .Values.settings.logLevel | quote }}
NETWORK: {{ .Values.settings.network | quote }}
IPFS_LOCAL_CLIENT_ENDPOINT: {{ .Values.settings.ipfsLocalClientEndpoint | quote }}
EXECUTION_ENDPOINT: {{ .Values.settings.executionEndpoint | quote }}
CONSENSUS_ENDPOINT: {{ .Values.settings.consensusEndpoint | quote }}
EXECUTION_ENDPOINTS: {{ .Values.settings.executionEndpoints | quote }}
CONSENSUS_ENDPOINTS: {{ .Values.settings.consensusEndpoints | quote }}
IPFS_FETCH_ENDPOINTS: {{ .Values.settings.ipfsFetchEndpoints | quote }}
DATABASE: "/data/oracle.db"
4 changes: 2 additions & 2 deletions charts/v3-oracle/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -101,8 +101,8 @@ settings:

## Ethereum / Gnosis Nodes
##
executionEndpoint: ""
consensusEndpoint: ""
executionEndpoints: ""
consensusEndpoints: ""

## IPFS Settings
##
Expand Down

0 comments on commit a0d4058

Please sign in to comment.