File tree Expand file tree Collapse file tree 3 files changed +1
-12
lines changed Expand file tree Collapse file tree 3 files changed +1
-12
lines changed Original file line number Diff line number Diff line change @@ -25,13 +25,6 @@ set -o pipefail
25
25
# https://github.com/kubernetes/kubernetes/issues/52255
26
26
unset CDPATH
27
27
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
-
35
28
# The root of the build/dist directory
36
29
KUBE_ROOT= " $( cd " $( dirname " ${BASH_SOURCE[0]} " ) /../.." && pwd -P) "
37
30
Original file line number Diff line number Diff line change @@ -34,8 +34,7 @@ import (
34
34
)
35
35
36
36
// 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.
39
38
type ipamController interface {
40
39
Run (ctx context.Context )
41
40
}
Original file line number Diff line number Diff line change 1
- //go:build !providerless
2
- // +build !providerless
3
-
4
1
/*
5
2
Copyright 2016 The Kubernetes Authors.
6
3
You can’t perform that action at this time.
0 commit comments