Skip to content

Commit 60fe406

Browse files
committed
remove vestiges of providerless tag
Signed-off-by: Davanum Srinivas <[email protected]>
1 parent c8a51aa commit 60fe406

File tree

3 files changed

+1
-12
lines changed

3 files changed

+1
-12
lines changed

hack/lib/init.sh

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,6 @@ set -o pipefail
2525
# https://github.com/kubernetes/kubernetes/issues/52255
2626
unset CDPATH
2727

28-
# FIXME(dims): Note that here we assume that if GOFLAGS are already set we
29-
# leave them as-is and not try to add providerless to it. So if you
30-
# really need to set your own GOFLAGS, ensure you add "providerless" explicitly
31-
if [[ "${KUBE_PROVIDERLESS:-"n"}" == "y" ]]; then
32-
export GOFLAGS=${GOFLAGS:-"-tags=providerless"}
33-
fi
34-
3528
# The root of the build/dist directory
3629
KUBE_ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")/../.." && pwd -P)"
3730

pkg/controller/nodeipam/node_ipam_controller.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,7 @@ import (
3434
)
3535

3636
// ipamController is an interface abstracting an interface for
37-
// legacy mode. It is needed to ensure correct building for
38-
// both provider-specific and providerless environments.
37+
// legacy mode.
3938
type ipamController interface {
4039
Run(ctx context.Context)
4140
}

test/e2e/storage/volume_provisioning.go

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
//go:build !providerless
2-
// +build !providerless
3-
41
/*
52
Copyright 2016 The Kubernetes Authors.
63

0 commit comments

Comments
 (0)