Skip to content

Commit 103f92e

Browse files
authored
Merge pull request #567 from CodeForPhilly/deploy_test
Deploy test
2 parents ba3e9f4 + 2654469 commit 103f92e

File tree

1 file changed

+15
-2
lines changed

1 file changed

+15
-2
lines changed

src/helm-chart/values.yaml

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@ server:
99
repository: ghcr.io/codeforphilly/paws-data-pipeline/server
1010
pullPolicy: Always
1111
# Overrides the image tag whose default is the chart appVersion.
12-
tag: "2.34"
12+
tag: "2.4"
1313

1414
client:
1515
image:
1616
repository: ghcr.io/codeforphilly/paws-data-pipeline/client
1717
pullPolicy: Always
1818
# Overrides the image tag whose default is the chart appVersion.
19-
tag: "2.34"
19+
tag: "2.4"
2020

2121
db:
2222
image:
@@ -104,3 +104,16 @@ nodeSelector: {}
104104
tolerations: []
105105

106106
affinity: {}
107+
108+
jobs:
109+
- name: minute-cron
110+
concurrencyPolicy: Forbid
111+
schedule: "*/1 * * * *"
112+
image: curlimages/curl
113+
imagePullPolicy: IfNotPresent
114+
command: ["/bin/bash"]
115+
116+
args:
117+
- "-c"
118+
- "curl http://paws-compose-server:5000/api/internal/test"
119+
restartPolicy: OnFailure

0 commit comments

Comments
 (0)