Skip to content

Commit

Permalink
Merge pull request #30434 from rjsadow/wg-multi-tenancy
Browse files Browse the repository at this point in the history
migrate `wg-multi-tenancy` jobs to community cluster
  • Loading branch information
k8s-ci-robot authored Aug 28, 2023
2 parents 5e22323 + 55bbf0c commit 43e810a
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 4 deletions.
16 changes: 12 additions & 4 deletions config/jobs/kubernetes-sigs/wg-multi-tenancy/hnc-e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
postsubmits:
kubernetes-sigs/hierarchical-namespaces:
- name: hnc-postsubmit-test
cluster: eks-prow-build-cluster
annotations:
testgrid-dashboards: wg-multi-tenancy-hnc
testgrid-tab-name: postsubmit-tests
Expand All @@ -28,15 +29,19 @@ postsubmits:
securityContext:
privileged: true # Required for docker-in-docker
resources:
limits:
cpu: 2
memory: 4Gi
requests:
cpu: 1
memory: "4Gi"
cpu: 2
memory: 4Gi

# The periodics are the same as the postsubmits, but we run them occasionally
# to ensure there's no flakiness during periods where there aren't lots of
# submissions. Please keep them as closely in sync as possible.
periodics:
- name: hnc-periodic-test
cluster: eks-prow-build-cluster
annotations:
testgrid-dashboards: wg-multi-tenancy-hnc
testgrid-tab-name: periodic-e2e-tests
Expand All @@ -63,6 +68,9 @@ periodics:
securityContext:
privileged: true # Required for docker-in-docker
resources:
limits:
cpu: 2
memory: 4Gi
requests:
cpu: 1
memory: "4Gi"
cpu: 2
memory: 4Gi
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
presubmits:
kubernetes-sigs/hierarchical-namespaces:
- name: pull-hnc-test
cluster: eks-prow-build-cluster
annotations:
testgrid-dashboards: wg-multi-tenancy-hnc
testgrid-tab-name: presubmit-tests
Expand All @@ -12,3 +13,10 @@ presubmits:
- image: public.ecr.aws/docker/library/golang:1.20
command:
- ./hack/ci-test.sh
resources:
limits:
cpu: 2
memory: 4Gi
requests:
cpu: 2
memory: 4Gi
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
presubmits:
kubernetes-sigs/multi-tenancy:
- name: pull-mtb-test
cluster: eks-prow-build-cluster
annotations:
testgrid-dashboards: wg-multi-tenancy-mtb
testgrid-tab-name: presubmit-tests
Expand All @@ -18,3 +19,10 @@ presubmits:
- ./benchmarks/kubectl-mtb/hack/ci-test.sh
securityContext:
privileged: true
resources:
limits:
cpu: 2
memory: 4Gi
requests:
cpu: 2
memory: 4Gi

0 comments on commit 43e810a

Please sign in to comment.