Skip to content

Commit

Permalink
Add integration test to lws
Browse files Browse the repository at this point in the history
Signed-off-by: kerthcet <[email protected]>
  • Loading branch information
kerthcet committed Mar 2, 2024
1 parent 01cf949 commit 50ec086
Showing 1 changed file with 25 additions and 2 deletions.
27 changes: 25 additions & 2 deletions config/jobs/kubernetes-sigs/lws/lws-presubmit.yaml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
presubmits:
kubernetes-sigs/lws:
- name: pull-lws-test-main
- name: pull-lws-test-unit-main
cluster: eks-prow-build-cluster
always_run: true
decorate: true
path_alias: sigs.k8s.io/lws
annotations:
testgrid-dashboards: sig-apps
testgrid-tab-name: pull-lws-test-unit-main
description: "Run leaderworkerset unit and integration tests"
description: "Run lws unit tests"
labels:
preset-dind-enabled: "true"
spec:
Expand All @@ -30,3 +30,26 @@ presubmits:
requests:
cpu: 3
memory: 10Gi
- name: pull-lws-test-integration-main
cluster: eks-prow-build-cluster
always_run: true
decorate: true
path_alias: sigs.k8s.io/lws
annotations:
testgrid-dashboards: sig-apps
testgrid-tab-name: pull-lws-test-integration-main
description: "Run lws integration tests"
spec:
containers:
- image: public.ecr.aws/docker/library/golang:1.21
command:
- make
args:
- test-integration
resources:
limits:
cpu: 3
memory: 10Gi
requests:
cpu: 3
memory: 10Gi

0 comments on commit 50ec086

Please sign in to comment.