Skip to content

Commit

Permalink
split disruptive and serials tests
Browse files Browse the repository at this point in the history
  • Loading branch information
upodroid authored and uroy-personal committed Oct 6, 2023
1 parent 37409a8 commit 44d581f
Show file tree
Hide file tree
Showing 6 changed files with 113 additions and 115 deletions.
21 changes: 10 additions & 11 deletions config/jobs/kubernetes/kops/build_jobs.py
Original file line number Diff line number Diff line change
Expand Up @@ -907,7 +907,7 @@ def generate_misc():
extra_dashboards=["sig-cluster-lifecycle-kubeup-to-kops"],
runs_per_day=6),

build_test(name_override="ci-kubernetes-e2e-cos-gce-conformance-concurrrency-canary",
build_test(name_override="ci-kubernetes-e2e-cos-gce-disruptive-canary",
cloud="gce",
distro="cos105",
networking="kubenet",
Expand All @@ -918,14 +918,13 @@ def generate_misc():
extra_flags=[
"--image=cos-cloud/cos-105-17412-156-49",
],
cluster_name="ci-kubernetes-e2e-cos-gce-conformance-concurrrency.k8s.local",
focus_regex=r'\[Conformance\]',
skip_regex=r'\[FOOBAR\]', # leaving it empty will allow kops to add extra skips
test_timeout_minutes=100,
test_parallelism=8,
focus_regex=r'\[Disruptive\]',
skip_regex=r'\[Driver:.gcepd\]|\[Flaky\]|\[Feature:.+\]', # pylint: disable=line-too-long
test_timeout_minutes=300,
test_parallelism=1, # serial tests
test_args="-num-nodes=3 --master-os-distro=gci --node-os-distro=gci",
extra_dashboards=["sig-cluster-lifecycle-kubeup-to-kops"],
runs_per_day=9),
runs_per_day=6),

build_test(name_override="ci-kubernetes-e2e-cos-gce-serial-canary",
cloud="gce",
Expand All @@ -939,13 +938,13 @@ def generate_misc():
"--image=cos-cloud/cos-105-17412-156-49",
"--node-volume-size=100",
],
focus_regex=r'\[Serial\]|\[Disruptive\]',
focus_regex=r'\[Serial\]',
skip_regex=r'\[Driver:.gcepd\]|\[Flaky\]|\[Feature:.+\]', # pylint: disable=line-too-long
test_timeout_minutes=500,
test_parallelism=1, # serial tests
test_args="-num-nodes=3 --master-os-distro=gci --node-os-distro=gci",
extra_dashboards=["sig-cluster-lifecycle-kubeup-to-kops"],
runs_per_day=4),
runs_per_day=6),

build_test(name_override="ci-kubernetes-e2e-cos-gce-alpha-features",
cloud="gce",
Expand Down Expand Up @@ -1837,7 +1836,8 @@ def generate_presubmits_e2e():
"--image=cos-cloud/cos-105-17412-156-49",
"--node-volume-size=100",
],
focus_regex=r'\[Serial\]|\[Disruptive\]',
build_cluster="k8s-infra-prow-build",
focus_regex=r'\[Serial\]',
skip_regex=r'\[Driver:.gcepd\]|\[Flaky\]|\[Feature:.+\]', # pylint: disable=line-too-long
test_timeout_minutes=500,
always_run=False,
Expand All @@ -1854,7 +1854,6 @@ def generate_presubmits_e2e():
kops_channel="alpha",
extra_flags=[
"--image=cos-cloud/cos-105-17412-156-49",
"--set=spec.nodeProblemDetector.enabled=true",
"--node-volume-size=100",
],
skip_regex=r'\[Slow\]|\[Serial\]|\[Disruptive\]|\[Flaky\]|\[Feature:.+\]', # pylint: disable=line-too-long
Expand Down
2 changes: 1 addition & 1 deletion config/jobs/kubernetes/kops/kops-periodics-distros.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -480,7 +480,7 @@ periodics:
-v 2 \
--up --down \
--cloud-provider=aws \
--create-args="--image='137112412989/amzn2-ami-kernel-5.10-hvm-2.0.20230912.0-x86_64-gp2' --channel=alpha --networking=cilium --discovery-store=s3://k8s-kops-prow/discovery" \
--create-args="--image='137112412989/amzn2-ami-kernel-5.10-hvm-2.0.20230926.0-x86_64-gp2' --channel=alpha --networking=cilium --discovery-store=s3://k8s-kops-prow/discovery" \
--kops-version-marker=https://storage.googleapis.com/kops-ci/bin/latest-ci-updown-green.txt \
--kubernetes-version=https://dl.k8s.io/release/stable.txt \
--test=kops \
Expand Down
Loading

0 comments on commit 44d581f

Please sign in to comment.