Skip to content

Commit 08ab209

Browse files
committed
Disable NFSv3 in SELinux jobs
NFS utils are not installed by kOps. Disable recently added NFSv3 tests. kubernetes/kubernetes#130211
1 parent ca09bc0 commit 08ab209

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

config/jobs/kubernetes/kops/build_jobs.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -924,7 +924,7 @@ def generate_misc():
924924
# that multiply nr. of tests.
925925
# - FeatureGate:SELinuxMount: the feature gate is alpha / disabled by default
926926
# in v1.32.
927-
skip_regex=r"\[Feature:Volumes\]|\[Driver:.nfs\]|\[Driver:.local\]|\[FeatureGate:SELinuxMount\]",
927+
skip_regex=r"\[Feature:Volumes\]|\[Driver:.nfs\]|\[Driver:.nfs3\]|\[Driver:.local\]|\[FeatureGate:SELinuxMount\]",
928928
# [Serial] and [Disruptive] are intentionally not skipped, therefore run
929929
# everything as serial.
930930
test_parallelism=1,
@@ -962,7 +962,7 @@ def generate_misc():
962962
# that multiply nr. of tests.
963963
# - Feature:SELinuxMountReadWriteOncePodOnly: these tests require SELinuxMount
964964
# feature gate off.
965-
skip_regex=r"\[Feature:Volumes\]|\[Driver:.nfs\]|\[Driver:.local\]|\[Feature:SELinuxMountReadWriteOncePodOnly\]",
965+
skip_regex=r"\[Feature:Volumes\]|\[Driver:.nfs\]|\[Driver:.nfs3\]|\[Driver:.local\]|\[Feature:SELinuxMountReadWriteOncePodOnly\]",
966966
# [Serial] and [Disruptive] are intentionally not skipped, therefore run
967967
# everything as serial.
968968
test_parallelism=1,

config/jobs/kubernetes/kops/kops-periodics-misc2.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2120,7 +2120,7 @@ periodics:
21202120
--test-package-dir=ci \
21212121
--test-package-marker=latest.txt \
21222122
--focus-regex="\[Feature:SELinux\]" \
2123-
--skip-regex="\[Feature:Volumes\]|\[Driver:.nfs\]|\[Driver:.local\]|\[FeatureGate:SELinuxMount\]" \
2123+
--skip-regex="\[Feature:Volumes\]|\[Driver:.nfs\]|\[Driver:.nfs3\]|\[Driver:.local\]|\[FeatureGate:SELinuxMount\]" \
21242124
--parallel=1
21252125
env:
21262126
- name: KUBE_SSH_KEY_PATH
@@ -2191,7 +2191,7 @@ periodics:
21912191
--test-package-dir=ci \
21922192
--test-package-marker=latest.txt \
21932193
--focus-regex="\[Feature:SELinux\]" \
2194-
--skip-regex="\[Feature:Volumes\]|\[Driver:.nfs\]|\[Driver:.local\]|\[Feature:SELinuxMountReadWriteOncePodOnly\]" \
2194+
--skip-regex="\[Feature:Volumes\]|\[Driver:.nfs\]|\[Driver:.nfs3\]|\[Driver:.local\]|\[Feature:SELinuxMountReadWriteOncePodOnly\]" \
21952195
--parallel=1
21962196
env:
21972197
- name: KUBE_SSH_KEY_PATH

config/jobs/kubernetes/sig-storage/sig-storage-gce-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@ presubmits:
270270
--test-args="--master-os-distro=custom --node-os-distro=custom" \
271271
--timeout=120m \
272272
--focus-regex="\[Feature:SELinux\]" \
273-
--skip-regex="\[Feature:Volumes\]|\[Driver:.nfs\]|\[Driver:.local\]|\[Feature:SELinuxMountReadWriteOncePodOnly\]" \
273+
--skip-regex="\[Feature:Volumes\]|\[Driver:.nfs\]|\[Driver:.nfs3\]|\[Driver:.local\]|\[Feature:SELinuxMountReadWriteOncePodOnly\]" \
274274
--use-built-binaries=true \
275275
--parallel=1 # [Feature:SELinux] tests include serial ones
276276
image: gcr.io/k8s-staging-test-infra/kubekins-e2e:v20250717-57d1ca3de9-master

0 commit comments

Comments
 (0)