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.
 
 

41 lines
1.0 KiB

apiVersion: argoproj.io/v1alpha1
kind: Workflow
metadata:
name: "{{ include "helm-socks-frontend.name" . }}-workflow"
namespace: argo
annotations:
argocd.argoproj.io/hook: PostSync
# argocd.argoproj.io/hook-delete-policy: HookSucceeded
spec:
entrypoint: check-service-up
onExit: exit-handler
templates:
- name: check-service-up
container:
image: appropriate/curl
command: ['curl']
args:
- '-X GET'
- 'helm-socks-frontend-int'
- name: exit-handler
steps:
- - name: notify
template: send-status-webhook
arguments:
parameters:
- name: status
value: "{{ `{{ workflow.status }}` }}"
- name: send-status-webhook
inputs:
parameters:
- name: status
container:
image: appropriate/curl
command: ['curl']
args:
- '-X POST'
- '-H "Content-Type: application/json"'
- '-d {{ `{{ inputs.parameters.status }}` }}'
- 'https://webhook.site/c1d94793-b1b1-424b-b412-3f429a6825bb'