-
Notifications
You must be signed in to change notification settings - Fork 137
/
.prow.yaml
60 lines (58 loc) · 1.52 KB
/
.prow.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
presubmits:
- name: kustomize-build
decorate: true
max_concurrency: 1
skip_if_only_changed: "^docs/|\\.md$|^(OWNERS|LICENSE)$|^\\."
skip_report: false
context: op1st/prow/kustomize-build
spec:
containers:
- image: quay.io/operate-first/opf-toolbox:latest
command:
- "test-kustomize-build"
resources:
requests:
memory: "256Mi"
cpu: "1500m"
limits:
memory: "500Mi"
cpu: "2"
- name: kubeval-validation
decorate: true
max_concurrency: 1
skip_if_only_changed: "^docs/|\\.md$|^(OWNERS|LICENSE)$|^\\."
skip_report: false
context: op1st/prow/kubeval-validation
decoration_config:
timeout: 60m
spec:
containers:
- image: quay.io/operate-first/opf-toolbox:latest
command:
- "test-kubeval-validation"
resources:
requests:
memory: "4Gi"
cpu: "1500m"
limits:
memory: "4Gi"
cpu: "2"
- name: pre-commit
decorate: true
skip_report: false
always_run: true
context: op1st/prow/pre-commit
spec:
containers:
- image: quay.io/thoth-station/thoth-precommit-py38:v0.15.0
command:
- "pre-commit"
- "run"
- "--all-files"
resources:
requests:
memory: "500Mi"
cpu: "4"
limits:
memory: "2Gi"
cpu: "4"