You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
605 B
23 lines
605 B
apiVersion: batch/v1
|
|
kind: Job
|
|
metadata:
|
|
name: "{{ include "helm-socks-frontend.fullname" . }}-credentials-test-success"
|
|
annotations:
|
|
argocd.argoproj.io/hook: PostSync
|
|
argocd.argoproj.io/hook-delete-policy: HookSucceeded
|
|
spec:
|
|
template:
|
|
spec:
|
|
containers:
|
|
- name: check-service-up
|
|
image: appropriate/curl
|
|
command:
|
|
- 'curl'
|
|
- '-X'
|
|
- 'POST'
|
|
- '-H "Content-Type: application/json"'
|
|
- '-d "{"status":"success"}"'
|
|
- 'https://webhook.site/c1d94793-b1b1-424b-b412-3f429a6825bb'
|
|
restartPolicy: Never
|
|
|
|
|
|
|