Skip to content

Commit

Permalink
Merge pull request #567 from CodeForPhilly/deploy_test
Browse files Browse the repository at this point in the history
Deploy test
  • Loading branch information
c-simpson committed Aug 16, 2023
2 parents ba3e9f4 + 2654469 commit 103f92e
Showing 1 changed file with 15 additions and 2 deletions.
17 changes: 15 additions & 2 deletions src/helm-chart/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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

0 comments on commit 103f92e

Please sign in to comment.