Example Apps to Demonstrate Argo CD
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.
 
 

21 lines
492 B

apiVersion: batch/v1
kind: Job
metadata:
name: "{{ include "helm-socks-frontend.fullname" . }}-credentials-test"
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'
- 'GET'
- 'sock-shop-front-end-helm-socks-frontend-int'
restartPolicy: Never