Skip to content

Commit 8166c84

Browse files
authored
Merge pull request #3 from caesarxuchao/init
Adding the core migrator that rewrites objects of a single resource type
2 parents 4d1d7d4 + 0cd9134 commit 8166c84

File tree

1,106 files changed

+650907
-1
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,106 files changed

+650907
-1
lines changed

Gopkg.lock

+314
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Gopkg.toml

+56
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
# Gopkg.toml example
2+
#
3+
# Refer to https://golang.github.io/dep/docs/Gopkg.toml.html
4+
# for detailed Gopkg.toml documentation.
5+
#
6+
# required = ["github.com/user/thing/cmd/thing"]
7+
# ignored = ["github.com/user/project/pkgX", "bitbucket.org/user/project/pkgA/pkgY"]
8+
#
9+
# [[constraint]]
10+
# name = "github.com/user/project"
11+
# version = "1.0.0"
12+
#
13+
# [[constraint]]
14+
# name = "github.com/user/project2"
15+
# branch = "dev"
16+
# source = "github.com/myfork/project2"
17+
#
18+
# [[override]]
19+
# name = "github.com/x/y"
20+
# version = "2.4.0"
21+
#
22+
# [prune]
23+
# non-go = false
24+
# go-tests = true
25+
# unused-packages = true
26+
27+
28+
# Copyright 2018 The Kubernetes Authors.
29+
#
30+
# Licensed under the Apache License, Version 2.0 (the "License");
31+
# you may not use this file except in compliance with the License.
32+
# You may obtain a copy of the License at
33+
#
34+
# http://www.apache.org/licenses/LICENSE-2.0
35+
#
36+
# Unless required by applicable law or agreed to in writing, software
37+
# distributed under the License is distributed on an "AS IS" BASIS,
38+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
39+
# See the License for the specific language governing permissions and
40+
# limitations under the License.
41+
42+
[[constraint]]
43+
name = "k8s.io/api"
44+
version = "kubernetes-1.11.2"
45+
46+
[[constraint]]
47+
name = "k8s.io/apimachinery"
48+
version = "kubernetes-1.11.2"
49+
50+
[[constraint]]
51+
name = "k8s.io/client-go"
52+
version = "kubernetes-1.11.2"
53+
54+
[prune]
55+
go-tests = true
56+
unused-packages = true

Makefile

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

OWNERS

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
approvers:
44
- deads2k
55
- lavalamp
6-
- xuchao
6+
- caesarxuchao

0 commit comments

Comments
 (0)