Skip to content

Commit

Permalink
Fixes to chart
Browse files Browse the repository at this point in the history
  • Loading branch information
seanmcgary committed May 22, 2024
1 parent d594705 commit 2242322
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
9 changes: 7 additions & 2 deletions eigenlayer-payment-updater/templates/cron.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,11 @@ apiVersion: batch/v1
kind: CronJob
metadata:
name: {{ .Values.cronJob.name }}
namespace: {{ .Values.cronJob.namespace }}
labels:
app: {{ .Values.cronJob.name }}
spec:
schedule: {{ .Values.cronJob.schedule }}
schedule: "{{ .Values.cronJob.schedule }}"
jobTemplate:
spec:
template:
Expand All @@ -14,9 +17,11 @@ spec:
- name: payment-updater
image: {{ .Values.cronJob.image.repository }}:{{ .Values.cronJob.image.tag }}
imagePullPolicy: {{ .Values.cronJob.image.pullPolicy }}
args:
- "updater"
volumeMounts:
- name: config-volume
mountPath: "/usr/local/eigenlabs-payment-updater/config.yml"
mountPath: "/etc/eigenlayer-payment-updater/"
readOnly: true
volumes:
- name: config-volume
Expand Down
3 changes: 2 additions & 1 deletion eigenlayer-payment-updater/values.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
cronJob:
name: eigenlayer-payment-updater
schedule: "15 0 * * *" # Runs every 15 minutes looking for new roots to post
namespace: default
schedule: "*/15 * * * *" # Runs every 15 minutes looking for new roots to post
image:
repository: 225727539677.dkr.ecr.us-east-1.amazonaws.com/eigenlayer-payment-updater
tag: latest
Expand Down

0 comments on commit 2242322

Please sign in to comment.