-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtransform-transformer-example.yaml
73 lines (73 loc) · 1.92 KB
/
transform-transformer-example.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
# Basic workflow that uses the transformer image for a transformation
apiVersion: argoproj.io/v1alpha1
kind: Workflow
metadata:
generateName: transform-
annotations:
workflows.argoproj.io/description: |
Transformation example using the transformer image.
spec:
entrypoint: transform
templates:
- name: transform
steps:
- - name: transform
template: hc-transformer
arguments: {}
- name: hc-transformer
# Artifacts as in the default paths in the transformer image
outputs:
artifacts:
- name: result
path: /tmp/target.gml
- name: reports
path: /tmp/reports.log
- name: stats
path: /tmp/stats.json
container:
name: 'transformer'
image: localhost:5000/wetransform/hale-transformer:latest
env:
- name: HALE_OPTS
value: -Dlog.hale.level=INFO -Dlog.root.level=WARN -Xmx800m
- name: HT_PROJECT_URL
value: http://static-projects.default.svc.cluster.local/hydro-example.halez
- name: HT_SOURCE_URL
value: http://static-sources.default.svc.cluster.local/hydro-example.zip
resources:
limits:
cpu: 1024m
memory: 1Gi
# retryStrategy:
# limit: '2'
# backoff:
# duration: '30'
# factor: '6'
# - name: exit-handler
# inputs: {}
# outputs: {}
# metadata: {}
# steps:
# - - name: notify-error
# template: notify-error
# arguments: {}
# when: '{{workflow.status}} != Succeeded'
# - name: notify-error
# inputs: {}
# outputs: {}
# metadata: {}
# script:
# name: ''
# image: wetransform/curl
# command:
# - bash
# resources: {}
# source: |-
# set -e
# curl -sSf ...
# retryStrategy:
# limit: '4'
# backoff:
# duration: '30'
# factor: '3'
# maxDuration: 4m