Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Migrate kops GCE presubmits to community cluster #30969

Merged
merged 1 commit into from
Oct 6, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion config/jobs/kubernetes/kops/build_jobs.py
Original file line number Diff line number Diff line change
Expand Up @@ -983,7 +983,7 @@ def generate_misc():
"--set=spec.kubeAPIServer.auditLogPath=/var/log/kube-apiserver-audit.log",
"--set=spec.kubeAPIServer.runtimeConfig=api/all=true"
],
kubernetes_feature_gates="AllAlpha,-InTreePluginGCEUnregister,-DisableCloudProviders,-DisableKubeletCloudCredentialProviders", # pylint: disable=line-too-long
kubernetes_feature_gates="AllAlpha,-InTreePluginGCEUnregister,DisableCloudProviders,DisableKubeletCloudCredentialProviders", # pylint: disable=line-too-long
focus_regex=r'\[Feature:(AdmissionWebhookMatchConditions|InPlacePodVerticalScaling|SidecarContainers|StorageVersionAPI|PodPreset|StatefulSetAutoDeletePVC)\]|Networking', # pylint: disable=line-too-long
skip_regex=r'\[Feature:(SCTPConnectivity|Volumes|Networking-Performance)\]|IPv6|csi-hostpath-v0', # pylint: disable=line-too-long
test_timeout_minutes=180,
Expand Down Expand Up @@ -1488,6 +1488,7 @@ def generate_presubmits_e2e():
name='pull-kops-e2e-k8s-gce-cilium',
networking='cilium',
tab_name='e2e-gce-cilium',
build_cluster="k8s-infra-prow-build",
always_run=True,
extra_flags=["--gce-service-account=default"], # Workaround for test-infra#24747
),
Expand All @@ -1498,6 +1499,7 @@ def generate_presubmits_e2e():
name='pull-kops-e2e-k8s-gce-cilium-etcd',
networking='cilium-etcd',
tab_name='e2e-gce-cilium-etcd',
build_cluster="k8s-infra-prow-build",
always_run=False,
extra_flags=["--gce-service-account=default"], # Workaround for test-infra#24747
),
Expand All @@ -1508,6 +1510,7 @@ def generate_presubmits_e2e():
name='pull-kops-e2e-k8s-gce-ipalias',
networking='gce',
tab_name='e2e-gce',
build_cluster="k8s-infra-prow-build",
always_run=True,
extra_flags=["--gce-service-account=default"], # Workaround for test-infra#24747
),
Expand All @@ -1518,6 +1521,7 @@ def generate_presubmits_e2e():
name='pull-kops-e2e-k8s-gce-long-cluster-name',
networking='cilium',
tab_name='e2e-gce-long-name',
build_cluster="k8s-infra-prow-build",
always_run=False,
extra_flags=["--gce-service-account=default"], # Workaround for test-infra#24747
),
Expand All @@ -1528,6 +1532,7 @@ def generate_presubmits_e2e():
name='pull-kops-e2e-k8s-gce-ci',
networking='cilium',
tab_name='e2e-gce-ci',
build_cluster="k8s-infra-prow-build",
always_run=False,
extra_flags=["--gce-service-account=default"], # Workaround for test-infra#24747
),
Expand All @@ -1538,6 +1543,7 @@ def generate_presubmits_e2e():
name='pull-kops-e2e-k8s-gce-calico-u2004-k22-containerd',
networking='calico',
tab_name='pull-kops-e2e-k8s-gce-calico-u2004-k22-containerd',
build_cluster="k8s-infra-prow-build",
always_run=False,
feature_flags=['GoogleCloudBucketACL'],
extra_flags=["--gce-service-account=default"], # Workaround for test-infra#24747
Expand Down Expand Up @@ -1643,6 +1649,7 @@ def generate_presubmits_e2e():
name="pull-kops-e2e-gce-dns-none",
cloud="gce",
networking="calico",
build_cluster="k8s-infra-prow-build",
extra_flags=["--dns=none", "--gce-service-account=default"],
),

Expand Down Expand Up @@ -1878,6 +1885,7 @@ def generate_presubmits_e2e():
networking="kubenet",
k8s_version="ci",
kops_channel="alpha",
build_cluster="k8s-infra-prow-build",
extra_flags=[
"--image=cos-cloud/cos-105-17412-156-49",
"--node-volume-size=100",
Expand All @@ -1895,6 +1903,7 @@ def generate_presubmits_e2e():
networking="kubenet",
k8s_version="ci",
kops_channel="alpha",
build_cluster="k8s-infra-prow-build",
extra_flags=[
"--image=cos-cloud/cos-105-17412-156-49",
"--set=spec.networking.networkID=default",
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 @@ -800,7 +800,7 @@ periodics:
-v 2 \
--up --down \
--cloud-provider=aws \
--create-args="--image='075585003325/Flatcar-beta-3602.1.6-hvm' --channel=alpha --networking=cilium --discovery-store=s3://k8s-kops-prow/discovery" \
--create-args="--image='075585003325/Flatcar-beta-3732.1.0-hvm' --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 \
--validation-wait=20m \
Expand Down
Loading