mirror of
https://github.com/kubernetes/sample-controller.git
synced 2025-01-22 18:02:51 +08:00
f1e5514ccc
Automatic merge from submit-queue. If you want to cherry-pick this change to another branch, please follow the instructions <a href="https://github.com/kubernetes/community/blob/master/contributors/devel/cherry-picks.md">here</a>. client-go: remove open-api import from types This builds off of https://github.com/kubernetes/kube-openapi/pull/21 and removes the following imports from `k8s.io/client-go/kubernetes`: ``` github.com/PuerkitoBio/purell github.com/PuerkitoBio/urlesc github.com/emicklei/go-restful github.com/emicklei/go-restful/log github.com/go-openapi/jsonpointer github.com/go-openapi/jsonreference github.com/go-openapi/spec github.com/go-openapi/swag github.com/mailru/easyjson/buffer github.com/mailru/easyjson/jlexer github.com/mailru/easyjson/jwriter golang.org/x/text/cases golang.org/x/text/internal golang.org/x/text/internal/tag golang.org/x/text/language golang.org/x/text/runes golang.org/x/text/secure/precis golang.org/x/text/width k8s.io/kube-openapi/pkg/common ``` /assign @sttts /assign @mbohlool cc @kubernetes/sig-api-machinery-pr-reviews ```release-note NONE ``` Kubernetes-commit: f6d0632bbbf8428bfec0ca72db5103916e6248b4
104 lines
3.2 KiB
Python
104 lines
3.2 KiB
Python
package(default_visibility = ["//visibility:public"])
|
|
|
|
load(
|
|
"@io_bazel_rules_go//go:def.bzl",
|
|
"go_library",
|
|
"go_test",
|
|
)
|
|
|
|
go_test(
|
|
name = "go_default_test",
|
|
srcs = [
|
|
"controller_ref_test.go",
|
|
"duration_test.go",
|
|
"group_version_test.go",
|
|
"helpers_test.go",
|
|
"labels_test.go",
|
|
"micro_time_test.go",
|
|
"time_test.go",
|
|
"types_test.go",
|
|
],
|
|
embed = [":go_default_library"],
|
|
importpath = "k8s.io/apimachinery/pkg/apis/meta/v1",
|
|
deps = [
|
|
"//vendor/github.com/ghodss/yaml:go_default_library",
|
|
"//vendor/github.com/json-iterator/go:go_default_library",
|
|
"//vendor/k8s.io/apimachinery/pkg/labels:go_default_library",
|
|
"//vendor/k8s.io/apimachinery/pkg/runtime/schema:go_default_library",
|
|
],
|
|
)
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = [
|
|
"controller_ref.go",
|
|
"conversion.go",
|
|
"doc.go",
|
|
"duration.go",
|
|
"generated.pb.go",
|
|
"group_version.go",
|
|
"helpers.go",
|
|
"labels.go",
|
|
"meta.go",
|
|
"micro_time.go",
|
|
"micro_time_proto.go",
|
|
"register.go",
|
|
"time.go",
|
|
"time_proto.go",
|
|
"types.go",
|
|
"types_swagger_doc_generated.go",
|
|
"watch.go",
|
|
"zz_generated.deepcopy.go",
|
|
"zz_generated.defaults.go",
|
|
],
|
|
importpath = "k8s.io/apimachinery/pkg/apis/meta/v1",
|
|
deps = [
|
|
"//vendor/github.com/gogo/protobuf/proto:go_default_library",
|
|
"//vendor/github.com/gogo/protobuf/sortkeys:go_default_library",
|
|
"//vendor/github.com/google/gofuzz:go_default_library",
|
|
"//vendor/k8s.io/apimachinery/pkg/api/resource:go_default_library",
|
|
"//vendor/k8s.io/apimachinery/pkg/conversion:go_default_library",
|
|
"//vendor/k8s.io/apimachinery/pkg/fields:go_default_library",
|
|
"//vendor/k8s.io/apimachinery/pkg/labels:go_default_library",
|
|
"//vendor/k8s.io/apimachinery/pkg/runtime:go_default_library",
|
|
"//vendor/k8s.io/apimachinery/pkg/runtime/schema:go_default_library",
|
|
"//vendor/k8s.io/apimachinery/pkg/selection:go_default_library",
|
|
"//vendor/k8s.io/apimachinery/pkg/types:go_default_library",
|
|
"//vendor/k8s.io/apimachinery/pkg/util/intstr:go_default_library",
|
|
"//vendor/k8s.io/apimachinery/pkg/watch:go_default_library",
|
|
],
|
|
)
|
|
|
|
filegroup(
|
|
name = "package-srcs",
|
|
srcs = glob(["**"]),
|
|
tags = ["automanaged"],
|
|
visibility = ["//visibility:private"],
|
|
)
|
|
|
|
filegroup(
|
|
name = "all-srcs",
|
|
srcs = [
|
|
":package-srcs",
|
|
"//staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/unstructured:all-srcs",
|
|
"//staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/validation:all-srcs",
|
|
],
|
|
tags = ["automanaged"],
|
|
)
|
|
|
|
filegroup(
|
|
name = "go_default_library_protos",
|
|
srcs = ["generated.proto"],
|
|
visibility = ["//visibility:public"],
|
|
)
|
|
|
|
go_test(
|
|
name = "go_default_xtest",
|
|
srcs = ["conversion_test.go"],
|
|
importpath = "k8s.io/apimachinery/pkg/apis/meta/v1_test",
|
|
deps = [
|
|
"//vendor/k8s.io/apimachinery/pkg/api/equality:go_default_library",
|
|
"//vendor/k8s.io/apimachinery/pkg/apis/meta/v1:go_default_library",
|
|
],
|
|
)
|