-
Notifications
You must be signed in to change notification settings - Fork 24
/
.prow.yaml
61 lines (60 loc) · 1.66 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
61
presubmits:
- name: test-end-to-end-sparkop
decorate: true
always_run: true
max_concurrency: 1
spec:
metadata:
namespace: sparkop-e2e
containers:
- image: gcr.io/kf-feast/feast-ci:latest
command: [ "infra/scripts/test-end-to-end-sparkop.sh"]
resources:
requests:
cpu: "2"
memory: "2Gi"
env:
- name: GOOGLE_APPLICATION_CREDENTIALS
value: /etc/gcloud/service-account.json
- name: DOCKER_REPOSITORY
value: gcr.io/kf-feast
volumeMounts:
- mountPath: /etc/gcloud/service-account.json
name: service-account
readOnly: true
subPath: service-account.json
volumes:
- name: service-account
secret:
secretName: feast-service-account
postsubmits:
- name: test-end-to-end-sparkop
decorate: true
always_run: true
max_concurrency: 1
branches:
- ^master$
spec:
metadata:
namespace: sparkop-e2e
containers:
- image: gcr.io/kf-feast/feast-ci:latest
command: [ "infra/scripts/test-end-to-end-sparkop.sh"]
resources:
requests:
cpu: "2"
memory: "2048Mi"
env:
- name: GOOGLE_APPLICATION_CREDENTIALS
value: /etc/gcloud/service-account.json
- name: DOCKER_REPOSITORY
value: gcr.io/kf-feast
volumeMounts:
- mountPath: /etc/gcloud/service-account.json
name: service-account
readOnly: true
subPath: service-account.json
volumes:
- name: service-account
secret:
secretName: feast-service-account