File tree 2 files changed +0
-6
lines changed
plugin/cmd/kube-scheduler
2 files changed +0
-6
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,6 @@ go_binary(
15
15
srcs = ["scheduler.go" ],
16
16
tags = ["automanaged" ],
17
17
deps = [
18
- "//pkg/healthz:go_default_library" ,
19
18
"//pkg/util/flag:go_default_library" ,
20
19
"//pkg/util/logs:go_default_library" ,
21
20
"//pkg/version/verflag:go_default_library" ,
Original file line number Diff line number Diff line change @@ -17,7 +17,6 @@ limitations under the License.
17
17
package main
18
18
19
19
import (
20
- "k8s.io/kubernetes/pkg/healthz"
21
20
"k8s.io/kubernetes/pkg/util/flag"
22
21
"k8s.io/kubernetes/pkg/util/logs"
23
22
"k8s.io/kubernetes/pkg/version/verflag"
@@ -27,10 +26,6 @@ import (
27
26
"github.com/spf13/pflag"
28
27
)
29
28
30
- func init () {
31
- healthz .DefaultHealthz ()
32
- }
33
-
34
29
func main () {
35
30
s := options .NewSchedulerServer ()
36
31
s .AddFlags (pflag .CommandLine )
You can’t perform that action at this time.
0 commit comments