forked from kubermatic/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.prow.yaml
49 lines (47 loc) · 1.16 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
presubmits:
- name: pre-docs-spellcheck
always_run: true
decorate: true
clone_uri: "ssh://git@github.com/kubermatic/docs.git"
spec:
containers:
- image: quay.io/kubermatic/codespell:1.17.1
command:
- make
args:
- spellcheck
resources:
requests:
memory: 512Mi
cpu: 0.5
- name: pre-docs-verify-hugo
always_run: true
decorate: true
clone_uri: "ssh://git@github.com/kubermatic/docs.git"
spec:
containers:
- image: quay.io/kubermatic/hugo:0.75.1-0
command:
- "./hack/ci/verify-hugo.sh"
resources:
requests:
cpu: 100m
memory: 128Mi
limits:
memory: 512Mi
- name: pre-docs-verify-remark-lint
always_run: true
decorate: true
optional: true
clone_uri: "ssh://git@github.com/kubermatic/docs.git"
spec:
containers:
- image: quay.io/kubermatic/remark-lint:1.0.0
command:
- "./hack/ci/lint-markdown.sh"
resources:
requests:
cpu: 200m
memory: 128Mi
limits:
memory: 512Mi