-
Notifications
You must be signed in to change notification settings - Fork 176
/
Copy pathsimple.yaml
86 lines (75 loc) · 1.7 KB
/
simple.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
86
org: gerrit.istio
repo: istio
image: fooimage
branches:
- master
cron: 0 2 * * *
jobs:
- name: test
types: [presubmit, postsubmit]
command: [prow/command.sh]
image: barimage
regex: "foo.*"
trigger: "/test basic"
- name: presubmit-kind
types: [presubmit]
resources: custom
requirements: [kind]
excluded_requirements: [cache]
command: [prow/istio-lint.sh]
env:
- name: var
value: val
- name: complex
valueFrom:
secretKeyRef:
key: test
name: name
repos: [istio/istio]
- name: custom-node-selector
types: [presubmit]
command: [prow/command.sh]
requirements: [gcp, commonargs]
node_selector:
foo: baz
- name: periodic-job
types: [periodic]
command: [run/nightly.sh]
annotations:
whatever-annotation-name: whatever-annotation-value
requirements: [desc, commonargs]
tags: [ "prowDashPrefix: periodic-job" ]
- name: presubmit-skipped
types: [presubmit, periodic]
resources: custom
command: [prow/command.sh]
repos: [istio/istio]
trigger: "/test basic"
- name: multi-arch
types: [presubmit]
architectures: [amd64, arm64]
command: [prow/command.sh]
image: test
- name: multi-arch-param
types: [presubmit]
architectures: [amd64, arm64]
command: [prow/command.sh, $(params.arch)]
image: test
- name: secret
types: [presubmit]
requirements: [secrets]
command: [prow/command.sh]
image: test
requirements: [gocache]
resources_presets:
default:
requests:
memory: "1Gi"
cpu: "1000m"
custom:
requests:
memory: "3Gi"
cpu: "3000m"
limits:
memory: "5Gi"
cpu: "5000m"