Skip to content

Commit 9eb664f

Browse files
committed
fix a few missed references
``` grep -RIl pkg/master . | xargs -n 1 sed -i 's|pkg/master|pkg/controlplane|g' LC_ALL=C sort -o hack/.golint_failures hack/.golint_failures ```
1 parent a86afc1 commit 9eb664f

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

hack/.golint_failures

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,8 @@ pkg/controller/volume/attachdetach/testing
8989
pkg/controller/volume/expand
9090
pkg/controller/volume/persistentvolume
9191
pkg/controller/volume/persistentvolume/config/v1alpha1
92+
pkg/controlplane/controller/crdregistration
93+
pkg/controlplane/tunneler
9294
pkg/features
9395
pkg/kubeapiserver
9496
pkg/kubectl/cmd/convert
@@ -109,8 +111,6 @@ pkg/kubelet/stats
109111
pkg/kubelet/sysctl
110112
pkg/kubelet/types
111113
pkg/kubemark
112-
pkg/master/controller/crdregistration
113-
pkg/master/tunneler
114114
pkg/proxy/apis/config
115115
pkg/proxy/apis/config/v1alpha1
116116
pkg/proxy/userspace

hack/verify-api-groups.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ packages_without_install=(
9595
"k8s.io/kubernetes/pkg/apis/componentconfig" # TODO: Remove this package completely and from this list
9696
)
9797
known_version_files=(
98-
"pkg/master/import_known_versions.go"
98+
"pkg/controlplane/import_known_versions.go"
9999
)
100100
for expected_install_package in "${expected_install_packages[@]}"; do
101101
found=0

staging/src/k8s.io/apiserver/pkg/endpoints/request/requestinfo.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ var specialVerbsNoSubresources = sets.NewString("proxy")
7777
// this list allows the parser to distinguish between a namespace subresource, and a namespaced resource
7878
var namespaceSubresources = sets.NewString("status", "finalize")
7979

80-
// NamespaceSubResourcesForTest exports namespaceSubresources for testing in pkg/master/master_test.go, so we never drift
80+
// NamespaceSubResourcesForTest exports namespaceSubresources for testing in pkg/controlplane/master_test.go, so we never drift
8181
var NamespaceSubResourcesForTest = sets.NewString(namespaceSubresources.List()...)
8282

8383
type RequestInfoFactory struct {

0 commit comments

Comments
 (0)