diff --git a/pkg/scheduler/BUILD b/pkg/scheduler/BUILD index ab70977ff54..23a5de16e96 100644 --- a/pkg/scheduler/BUILD +++ b/pkg/scheduler/BUILD @@ -114,7 +114,6 @@ filegroup( name = "all-srcs", srcs = [ ":package-srcs", - "//pkg/scheduler/algorithm:all-srcs", "//pkg/scheduler/algorithmprovider:all-srcs", "//pkg/scheduler/api:all-srcs", "//pkg/scheduler/apis/config:all-srcs", diff --git a/pkg/scheduler/algorithm/BUILD b/pkg/scheduler/algorithm/BUILD deleted file mode 100644 index 45e7dadde8e..00000000000 --- a/pkg/scheduler/algorithm/BUILD +++ /dev/null @@ -1,22 +0,0 @@ -load("@io_bazel_rules_go//go:def.bzl", "go_library") - -go_library( - name = "go_default_library", - srcs = ["doc.go"], - importpath = "k8s.io/kubernetes/pkg/scheduler/algorithm", - visibility = ["//visibility:public"], -) - -filegroup( - name = "package-srcs", - srcs = glob(["**"]), - tags = ["automanaged"], - visibility = ["//visibility:private"], -) - -filegroup( - name = "all-srcs", - srcs = [":package-srcs"], - tags = ["automanaged"], - visibility = ["//visibility:public"], -) diff --git a/pkg/scheduler/algorithm/doc.go b/pkg/scheduler/algorithm/doc.go deleted file mode 100644 index ac7b0038073..00000000000 --- a/pkg/scheduler/algorithm/doc.go +++ /dev/null @@ -1,19 +0,0 @@ -/* -Copyright 2014 The Kubernetes Authors. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. -*/ - -// Package algorithm contains a generic Scheduler interface and several -// implementations. -package algorithm // import "k8s.io/kubernetes/pkg/scheduler/algorithm"