Skip to content

Commit

Permalink
infra/gcp/prow: Add e2e project for sig-scalability
Browse files Browse the repository at this point in the history
Add e2e projects for sig-scalability prowjobs that need 5K nodes.
Initial suggestion : kubernetes/test-infra#22430 (review)

Signed-off-by: Arnaud Meukam <ameukam@gmail.com>
  • Loading branch information
ameukam committed Jun 10, 2021
1 parent 74d0a19 commit 6510918
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -170,6 +170,11 @@ data:
- k8s-infra-e2e-boskos-scale-28
- k8s-infra-e2e-boskos-scale-29
- k8s-infra-e2e-boskos-scale-30
- k8s-infra-e2e-boskos-scale-5k-01
- k8s-infra-e2e-boskos-scale-5k-02
- k8s-infra-e2e-boskos-scale-5k-03
- k8s-infra-e2e-boskos-scale-5k-04
- k8s-infra-e2e-boskos-scale-5k-05
state: dirty
type: scalability-project
kind: ConfigMap
Expand Down
10 changes: 10 additions & 0 deletions infra/gcp/prow/ensure-e2e-projects.sh
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,8 @@ readonly E2E_MANUAL_PROJECTS=(
k8s-infra-e2e-gce-project
# for manual use during job migration, eg: --gcp-project=node-e2e-project
k8s-infra-e2e-node-e2e-project
# for manual use during job migration, eg: --gcp-project=k8s-infra-e2e-scale-5k-project
k8s-infra-e2e-scale-5k-project
# for manual use during job migration, eg: --gcp-project=scale-project
k8s-infra-e2e-scale-project
# for manual use during job migration, eg: --gcp-project=gpu-project
Expand All @@ -68,6 +70,13 @@ for i in $(seq 1 30); do
done
readonly E2E_SCALE_PROJECTS

# e2e projects with 5000 nodes for scalability jobs
E2E_SCALE_5K_PROJECTS=()
for i in $(seq 1 5); do
E2E_SCALE_5K_PROJECTS+=("$(printf "k8s-infra-e2e-boskos-scale-5k-%02i" "$i")")
done
readonly E2E_SCALE_5K_PROJECTS

# e2e projects for gpu jobs
# - us-west1 Committed NVIDIA K80 GPUs raised to 2
E2E_GPU_PROJECTS=()
Expand All @@ -79,6 +88,7 @@ readonly E2E_GPU_PROJECTS
readonly E2E_PROJECTS=(
"${E2E_MANUAL_PROJECTS[@]}"
"${E2E_BOSKOS_PROJECTS[@]}"
"${E2E_SCALE_5K_PROJECTS[@]}"
"${E2E_SCALE_PROJECTS[@]}"
"${E2E_GPU_PROJECTS[@]}"
)
Expand Down

0 comments on commit 6510918

Please sign in to comment.