Skip to content

Commit

Permalink
Update v3-keeper (#517)
Browse files Browse the repository at this point in the history
  • Loading branch information
antares-sw authored Mar 11, 2024
1 parent bde2660 commit c9be58b
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 3 deletions.
4 changes: 2 additions & 2 deletions charts/v3-keeper/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v2
name: v3-keeper
version: 3.0.8
appVersion: v0.4.0
version: 3.0.9
appVersion: v0.6.0
kubeVersion: "^1.19.0-0"
description: StakeWise Keeper is used to aggregate transactions from the oracles and submit them on-chain.
type: application
Expand Down
3 changes: 3 additions & 0 deletions charts/v3-keeper/templates/configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,6 @@ data:
EXECUTION_ENDPOINTS: {{ .Values.settings.executionEndpoints | quote }}
CONSENSUS_ENDPOINTS: {{ .Values.settings.consensusEndpoints | quote }}
METRICS_HOST: {{ .Values.serviceMonitor.host | quote }}

IPFS_LOCAL_CLIENT_ENDPOINT: {{ .Values.settings.ipfsLocalClientEndpoint | quote }}
IPFS_INFURA_CLIENT_ENDPOINT: {{ .Values.settings.ipfsInfuraClientEndpount | quote }}
6 changes: 6 additions & 0 deletions charts/v3-keeper/templates/secret.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,9 @@ type: Opaque
data:
SENTRY_DSN: {{ .Values.settings.sentryDsn | b64enc | quote }}
PRIVATE_KEY: {{ .Values.settings.privateKey | b64enc | quote }}
IPFS_INFURA_CLIENT_USERNAME: {{ .Values.settings.ipfsInfuraClientUsername | b64enc | quote }}
IPFS_INFURA_CLIENT_PASSWORD: {{ .Values.settings.ipfsInfuraClientPassword | b64enc | quote }}
IPFS_PINATA_API_KEY: {{ .Values.settings.ipfsPinataApiKey | b64enc | quote }}
IPFS_PINATA_SECRET_KEY: {{ .Values.settings.ipfsPinataSecretKey | b64enc | quote }}
IPFS_FILEBASE_API_TOKEN: {{ .Values.settings.ipfsFilebaseAPIToken | b64enc | quote }}
IPFS_QUICKNODE_API_TOKEN: {{ .Values.settings.ipfsQuikcnodeAPIToken | b64enc | quote }}
12 changes: 11 additions & 1 deletion 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.4.0"
tag: "v0.6.0"
pullPolicy: IfNotPresent

## Credentials to fetch images from private registry
Expand Down Expand Up @@ -79,6 +79,16 @@ settings:
##
privateKey: ""

## IPFS
ipfsLocalClientEndpoint: ""
ipfsInfuraClientEndpoint: "/dns/ipfs.infura.io/tcp/5001/https"
ipfsInfuraClientUsername: ""
ipfsInfuraClientPassword: ""
ipfsPinataApiKey: ""
ipfsPinataSecretKey: ""
ipfsFilebaseAPIToken: ""
ipfsQuikcnodeAPIToken: ""

## Prometheus Service Monitor
## ref: https://github.com/coreos/prometheus-operator
## https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#endpoint
Expand Down

0 comments on commit c9be58b

Please sign in to comment.