Skip to content

Commit bb3b4e5

Browse files
committed
Do not disable admission plugins by default
1 parent bfc9827 commit bb3b4e5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

hack/check-everything.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ kb_root_dir=$tmp_root/kubebuilder
4040
# Skip fetching and untaring the tools by setting the SKIP_FETCH_TOOLS variable
4141
# in your environment to any value:
4242
#
43-
# $ SKIP_FETCH_TOOLS=1 ./test.sh
43+
# $ SKIP_FETCH_TOOLS=1 ./check-everything.sh
4444
#
4545
# If you skip fetching tools, this script will use the tools already on your
4646
# machine, but rebuild the kubebuilder and kubebuilder-bin binaries.

pkg/internal/testing/integration/internal/apiserver.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ var APIServerDefaultArgs = []string{
99
"--insecure-port={{ if .URL }}{{ .URL.Port }}{{ end }}",
1010
"--insecure-bind-address={{ if .URL }}{{ .URL.Hostname }}{{ end }}",
1111
"--secure-port={{ if .SecurePort }}{{ .SecurePort }}{{ end }}",
12-
"--disable-admission-plugins=NamespaceLifecycle,LimitRanger,ServiceAccount,TaintNodesByCondition,Priority,DefaultTolerationSeconds,DefaultStorageClass,StorageObjectInUseProtection,PersistentVolumeClaimResize,ResourceQuota", //nolint
12+
"--disable-admission-plugins=ServiceAccount",
1313
"--service-cluster-ip-range=10.0.0.0/24",
1414
"--allow-privileged=true",
1515
}

0 commit comments

Comments
 (0)