mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-23 11:50:44 +00:00
Revert "Remove conversion package"
This commit is contained in:
parent
8d5227bb2e
commit
9cd159a191
@ -79,6 +79,7 @@ filegroup(
|
|||||||
"//pkg/client/unversioned:all-srcs",
|
"//pkg/client/unversioned:all-srcs",
|
||||||
"//pkg/cloudprovider:all-srcs",
|
"//pkg/cloudprovider:all-srcs",
|
||||||
"//pkg/controller:all-srcs",
|
"//pkg/controller:all-srcs",
|
||||||
|
"//pkg/conversion:all-srcs",
|
||||||
"//pkg/credentialprovider:all-srcs",
|
"//pkg/credentialprovider:all-srcs",
|
||||||
"//pkg/fieldpath:all-srcs",
|
"//pkg/fieldpath:all-srcs",
|
||||||
"//pkg/fields:all-srcs",
|
"//pkg/fields:all-srcs",
|
||||||
|
30
pkg/conversion/BUILD
Normal file
30
pkg/conversion/BUILD
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
package(default_visibility = ["//visibility:public"])
|
||||||
|
|
||||||
|
licenses(["notice"])
|
||||||
|
|
||||||
|
load(
|
||||||
|
"@io_bazel_rules_go//go:def.bzl",
|
||||||
|
"go_library",
|
||||||
|
)
|
||||||
|
|
||||||
|
go_library(
|
||||||
|
name = "go_default_library",
|
||||||
|
srcs = ["doc.go"],
|
||||||
|
tags = ["automanaged"],
|
||||||
|
)
|
||||||
|
|
||||||
|
filegroup(
|
||||||
|
name = "package-srcs",
|
||||||
|
srcs = glob(["**"]),
|
||||||
|
tags = ["automanaged"],
|
||||||
|
visibility = ["//visibility:private"],
|
||||||
|
)
|
||||||
|
|
||||||
|
filegroup(
|
||||||
|
name = "all-srcs",
|
||||||
|
srcs = [
|
||||||
|
":package-srcs",
|
||||||
|
"//pkg/conversion/queryparams:all-srcs",
|
||||||
|
],
|
||||||
|
tags = ["automanaged"],
|
||||||
|
)
|
21
pkg/conversion/doc.go
Normal file
21
pkg/conversion/doc.go
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
/*
|
||||||
|
Copyright 2017 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 conversion only exists until heapster rebases
|
||||||
|
// TODO genericapiserver remove this empty package. Godep fails without this because heapster relies
|
||||||
|
// on this package. This will allow us to start splitting packages, but will force
|
||||||
|
// heapster to update on their next kube rebase.
|
||||||
|
package conversion
|
27
pkg/conversion/queryparams/BUILD
Normal file
27
pkg/conversion/queryparams/BUILD
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
package(default_visibility = ["//visibility:public"])
|
||||||
|
|
||||||
|
licenses(["notice"])
|
||||||
|
|
||||||
|
load(
|
||||||
|
"@io_bazel_rules_go//go:def.bzl",
|
||||||
|
"go_library",
|
||||||
|
)
|
||||||
|
|
||||||
|
go_library(
|
||||||
|
name = "go_default_library",
|
||||||
|
srcs = ["doc.go"],
|
||||||
|
tags = ["automanaged"],
|
||||||
|
)
|
||||||
|
|
||||||
|
filegroup(
|
||||||
|
name = "package-srcs",
|
||||||
|
srcs = glob(["**"]),
|
||||||
|
tags = ["automanaged"],
|
||||||
|
visibility = ["//visibility:private"],
|
||||||
|
)
|
||||||
|
|
||||||
|
filegroup(
|
||||||
|
name = "all-srcs",
|
||||||
|
srcs = [":package-srcs"],
|
||||||
|
tags = ["automanaged"],
|
||||||
|
)
|
8
pkg/conversion/queryparams/OWNERS
Executable file
8
pkg/conversion/queryparams/OWNERS
Executable file
@ -0,0 +1,8 @@
|
|||||||
|
reviewers:
|
||||||
|
- smarterclayton
|
||||||
|
- wojtek-t
|
||||||
|
- caesarxuchao
|
||||||
|
- mikedanese
|
||||||
|
- liggitt
|
||||||
|
- kargakis
|
||||||
|
- dims
|
21
pkg/conversion/queryparams/doc.go
Normal file
21
pkg/conversion/queryparams/doc.go
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
/*
|
||||||
|
Copyright 2017 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 queryparams only exists until heapster rebases
|
||||||
|
// TODO genericapiserver remove this empty package. Godep fails without this because heapster relies
|
||||||
|
// on this package. This will allow us to start splitting packages, but will force
|
||||||
|
// heapster to update on their next kube rebase.
|
||||||
|
package queryparams
|
Loading…
Reference in New Issue
Block a user