Skip to content

Commit d884893

Browse files
Create a stub metatypes package for backwards compatibility
1 parent 9b3e6f7 commit d884893

File tree

2 files changed

+35
-0
lines changed

2 files changed

+35
-0
lines changed

pkg/api/meta/metatypes/BUILD

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
package(default_visibility = ["//visibility:public"])
2+
3+
licenses(["notice"])
4+
5+
load(
6+
"@io_bazel_rules_go//go:def.bzl",
7+
"go_binary",
8+
"go_library",
9+
"go_test",
10+
"cgo_library",
11+
)
12+
13+
go_library(
14+
name = "go_default_library",
15+
srcs = ["doc.go"],
16+
tags = ["automanaged"],
17+
)

pkg/api/meta/metatypes/doc.go

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
/*
2+
Copyright 2016 The Kubernetes Authors.
3+
4+
Licensed under the Apache License, Version 2.0 (the "License");
5+
you may not use this file except in compliance with the License.
6+
You may obtain a copy of the License at
7+
8+
http://www.apache.org/licenses/LICENSE-2.0
9+
10+
Unless required by applicable law or agreed to in writing, software
11+
distributed under the License is distributed on an "AS IS" BASIS,
12+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
See the License for the specific language governing permissions and
14+
limitations under the License.
15+
*/
16+
17+
// Package metatypes has been deprecated and removed.
18+
package meta // import "k8s.io/kubernetes/pkg/api/meta/metatypes"

0 commit comments

Comments
 (0)