Skip to content

Commit

Permalink
add e2e jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
xrstf committed Jun 6, 2023
1 parent 0a1886a commit 0da5e54
Showing 1 changed file with 106 additions and 0 deletions.
106 changes: 106 additions & 0 deletions .prow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -72,3 +72,109 @@ presubmits:
requests:
memory: 4Gi
cpu: 2

- name: pull-kcp-test-e2e
always_run: true
decorate: true
clone_uri: "https://github.com/kcp-dev/kcp"
labels:
preset-goproxy: "true"
spec:
containers:
- image: ghcr.io/kcp-dev/infra/build:1.19.9-2
command:
- ./hack/run-with-prometheus.sh
- make
- test-e2e
env:
- name: SUITES
value: control-plane
- name: USE_GOTESTSUM
value: '1'
- name: KUBE_CACHE_MUTATION_DETECTOR
value: '1'
- name: E2E_PARALLELISM
value: '3'
resources:
requests:
memory: 4Gi
cpu: 3

- name: pull-kcp-test-e2e-multiple-runs
always_run: true
decorate: true
clone_uri: "https://github.com/kcp-dev/kcp"
labels:
preset-goproxy: "true"
spec:
containers:
- image: ghcr.io/kcp-dev/infra/build:1.19.9-2
command:
- ./hack/run-with-prometheus.sh
- make
- test-e2e
env:
- name: SUITES
value: control-plane
- name: USE_GOTESTSUM
value: '1'
- name: KUBE_CACHE_MUTATION_DETECTOR
value: '1'
- name: COUNT
value: '3'
- name: E2E_PARALLELISM
value: '3'
resources:
requests:
memory: 4Gi
cpu: 3

- name: pull-kcp-test-e2e-shared
always_run: true
decorate: true
clone_uri: "https://github.com/kcp-dev/kcp"
labels:
preset-goproxy: "true"
spec:
containers:
- image: ghcr.io/kcp-dev/infra/build:1.19.9-2
command:
- ./hack/run-with-prometheus.sh
- make
- test-e2e-shared-minimal
env:
- name: SUITES
value: control-plane
- name: USE_GOTESTSUM
value: '1'
- name: KUBE_CACHE_MUTATION_DETECTOR
value: '1'
resources:
requests:
memory: 4Gi
cpu: 3

- name: pull-kcp-test-e2e-sharded
always_run: true
decorate: true
clone_uri: "https://github.com/kcp-dev/kcp"
labels:
preset-goproxy: "true"
spec:
containers:
- image: ghcr.io/kcp-dev/infra/build:1.19.9-2
command:
- ./hack/run-with-prometheus.sh
- make
- test-e2e-sharded-minimal
env:
- name: SUITES
value: control-plane
- name: USE_GOTESTSUM
value: '1'
- name: KUBE_CACHE_MUTATION_DETECTOR
value: '1'
resources:
requests:
memory: 4Gi
cpu: 3

0 comments on commit 0da5e54

Please sign in to comment.