Skip to content

Commit

Permalink
Update readme with helm install instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
seanmcgary committed May 22, 2024
1 parent 86cded5 commit d594705
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -144,3 +144,23 @@ The proof store will fetch two files from this URL with the following paths:
<base url>/<environment>/<network>/<snapshot date>/claim-amounts.json

```

## Deploying to Kubernetes with Helm

This repo comes with a helm chart that enables you to deploy the updater in an automated fashion, running it as a cronjob.

This chart follows the standard patterns of all other helm charts; values can be overridden in a separate yaml file or passed as flags when invoking helm.

Example:
```bash
helm upgrade --install \
--atomic \
--cleanup-on-fail \
--timeout 2m \
--force \
--debug \
--wait \
--version=$(date +%s) \
-f ./eigenlayer-payment-updater/values.yaml \
payment-updater ./eigenlayer-payment-updater
```

0 comments on commit d594705

Please sign in to comment.