diff --git a/src/helm-chart/values.yaml b/src/helm-chart/values.yaml index 52120a5a..ae4a72c8 100644 --- a/src/helm-chart/values.yaml +++ b/src/helm-chart/values.yaml @@ -9,14 +9,14 @@ server: repository: ghcr.io/codeforphilly/paws-data-pipeline/server pullPolicy: Always # Overrides the image tag whose default is the chart appVersion. - tag: "2.34" + tag: "2.4" client: image: repository: ghcr.io/codeforphilly/paws-data-pipeline/client pullPolicy: Always # Overrides the image tag whose default is the chart appVersion. - tag: "2.34" + tag: "2.4" db: image: @@ -104,3 +104,16 @@ nodeSelector: {} tolerations: [] affinity: {} + +jobs: + - name: minute-cron + concurrencyPolicy: Forbid + schedule: "*/1 * * * *" + image: curlimages/curl + imagePullPolicy: IfNotPresent + command: ["/bin/bash"] + + args: + - "-c" + - "curl http://paws-compose-server:5000/api/internal/test" + restartPolicy: OnFailure \ No newline at end of file