Merge pull request #125365 from dims/remove-vestiges-of-providerless-tag

Remove vestiges of providerless tag
This commit is contained in:
Kubernetes Prow Robot 2024-06-06 10:19:56 -07:00 committed by GitHub
commit c707c43466
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 1 additions and 12 deletions

View File

@ -25,13 +25,6 @@ set -o pipefail
# https://github.com/kubernetes/kubernetes/issues/52255
unset CDPATH
# FIXME(dims): Note that here we assume that if GOFLAGS are already set we
# leave them as-is and not try to add providerless to it. So if you
# really need to set your own GOFLAGS, ensure you add "providerless" explicitly
if [[ "${KUBE_PROVIDERLESS:-"n"}" == "y" ]]; then
export GOFLAGS=${GOFLAGS:-"-tags=providerless"}
fi
# The root of the build/dist directory
KUBE_ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")/../.." && pwd -P)"

View File

@ -34,8 +34,7 @@ import (
)
// ipamController is an interface abstracting an interface for
// legacy mode. It is needed to ensure correct building for
// both provider-specific and providerless environments.
// legacy mode.
type ipamController interface {
Run(ctx context.Context)
}

View File

@ -1,6 +1,3 @@
//go:build !providerless
// +build !providerless
/*
Copyright 2016 The Kubernetes Authors.