-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtransform-orgcli-example.yaml
85 lines (85 loc) · 2.21 KB
/
transform-orgcli-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
74
75
76
77
78
79
80
81
82
83
84
85
# Workflow that uses the original hale CLI for a transformation
apiVersion: argoproj.io/v1alpha1
kind: Workflow
metadata:
generateName: transform-
annotations:
workflows.argoproj.io/description: |
Transformation example using the original hale-cli.
spec:
entrypoint: transform
templates:
- name: transform
steps:
- - name: transform
template: hc-transformer
arguments: {}
- name: hc-transformer
outputs:
artifacts:
- name: result
path: /tmp/target.gml
- name: reports
path: /tmp/reports.log
- name: stats
path: /tmp/stats.json
container:
name: 'transformer'
image: docker.io/wetransform/hale-cli:latest
env:
- name: HALE_OPTS
value: -Dlog.hale.level=INFO -Dlog.root.level=WARN -Xmx5120m
# Entrypoint is CLI # command:
args:
# Transformation arguments see http://help.halestudio.org/latest/topic/eu.esdihumboldt.hale.doc.user/html/tasks/transform_cli.html?cp=0_6_6
- transform
- -project
- http://static-projects.default.svc.cluster.local/hydro-example.halez
- -source
- http://static-sources.default.svc.cluster.local/hydro-example.gml
- -target
- /tmp/target.gml
- -preset
- default
- -reportsOut
- /tmp/reports.log
- -stacktrace
- -statisticsOut
- /tmp/stats.json
resources:
limits:
cpu: 1024m
memory: 5Gi
# 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