-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.prow.yaml
38 lines (38 loc) · 1014 Bytes
/
.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
presubmits:
- name: pull-utils-test
always_run: true
decorate: true
clone_uri: ssh://[email protected]/kubermatic/utils.git
spec:
containers:
- image: quay.io/kubecarrier/test # update to utils image once created
imagePullPolicy: Always
command:
- go-init
- -main
- make test
env:
- name: GO111MODULE
value: "on"
resources:
requests:
cpu: 4
- name: pull-utils-lint
always_run: true
decorate: true
clone_uri: ssh://[email protected]/kubermatic/utils.git
spec:
containers:
- image: quay.io/kubecarrier/dev:v5 # update to utils image once created
imagePullPolicy: Always
command:
- go-init
- -main
- make lint
env:
- name: GO111MODULE
value: "on"
resources:
requests:
cpu: 4
memory: 6Gi