mirror of
				https://github.com/optim-enterprises-bv/kubernetes.git
				synced 2025-10-30 17:58:14 +00:00 
			
		
		
		
	Add sample CustomResourceDefinition controller
sample-controller: add API types sample-controller: regenerate files sample-controller: add implementation sample-controller: update bazel sample-controller: update make-rules and cache_go_dirs sample-controller: Set noStatus tag. Remove openapi-gen tag. sample-controller: add deletion tombstone handling logic sample-controller: update README, remove use of reflect in UpdateFuncs sample-controller: add OWNERS file sample-controller: add LICENSE
This commit is contained in:
		| @@ -778,6 +778,14 @@ staging/src/k8s.io/sample-apiserver/pkg/client/informers/internalversion/interna | ||||
| staging/src/k8s.io/sample-apiserver/pkg/cmd/server | ||||
| staging/src/k8s.io/sample-apiserver/pkg/registry/wardle/fischer | ||||
| staging/src/k8s.io/sample-apiserver/pkg/registry/wardle/flunder | ||||
| staging/src/k8s.io/sample-controller/pkg/apis/samplecontroller | ||||
| staging/src/k8s.io/sample-controller/pkg/apis/samplecontroller/v1alpha1 | ||||
| staging/src/k8s.io/sample-controller/pkg/client/clientset/versioned | ||||
| staging/src/k8s.io/sample-controller/pkg/client/clientset/versioned/fake | ||||
| staging/src/k8s.io/sample-controller/pkg/client/clientset/versioned/scheme | ||||
| staging/src/k8s.io/sample-controller/pkg/client/clientset/versioned/typed/samplecontroller/v1alpha1 | ||||
| staging/src/k8s.io/sample-controller/pkg/client/clientset/versioned/typed/samplecontroller/v1alpha1/fake | ||||
| staging/src/k8s.io/sample-controller/pkg/client/informers/externalversions/internalinterfaces | ||||
| test/e2e | ||||
| test/e2e/apimachinery | ||||
| test/e2e/apps | ||||
|   | ||||
| @@ -39,7 +39,7 @@ function kfind() { | ||||
|     # include the "special" vendor directories which are actually part | ||||
|     # of the Kubernetes source tree - generators will use these for | ||||
|     # including certain core API concepts. | ||||
|     find -H . ./vendor/k8s.io/apimachinery ./vendor/k8s.io/apiserver ./vendor/k8s.io/kube-aggregator ./vendor/k8s.io/apiextensions-apiserver ./vendor/k8s.io/metrics ./vendor/k8s.io/sample-apiserver ./vendor/k8s.io/api ./vendor/k8s.io/client-go ./vendor/k8s.io/code-generator \ | ||||
|     find -H . ./vendor/k8s.io/apimachinery ./vendor/k8s.io/apiserver ./vendor/k8s.io/kube-aggregator ./vendor/k8s.io/apiextensions-apiserver ./vendor/k8s.io/metrics ./vendor/k8s.io/sample-apiserver ./vendor/k8s.io/api ./vendor/k8s.io/client-go ./vendor/k8s.io/code-generator ./vendor/k8s.io/sample-controller \ | ||||
|         \(                         \ | ||||
|         -not \(                    \ | ||||
|             \(                     \ | ||||
|   | ||||
| @@ -125,5 +125,6 @@ ${informergen} \ | ||||
| CODEGEN_PKG=./vendor/k8s.io/code-generator vendor/k8s.io/code-generator/hack/update-codegen.sh | ||||
| CODEGEN_PKG=./vendor/k8s.io/code-generator vendor/k8s.io/kube-aggregator/hack/update-codegen.sh | ||||
| CODEGEN_PKG=./vendor/k8s.io/code-generator vendor/k8s.io/sample-apiserver/hack/update-codegen.sh | ||||
| CODEGEN_PKG=./vendor/k8s.io/code-generator vendor/k8s.io/sample-controller/hack/update-codegen.sh | ||||
| CODEGEN_PKG=./vendor/k8s.io/code-generator vendor/k8s.io/apiextensions-apiserver/hack/update-codegen.sh | ||||
| CODEGEN_PKG=./vendor/k8s.io/code-generator vendor/k8s.io/metrics/hack/update-codegen.sh | ||||
|   | ||||
| @@ -30,6 +30,7 @@ kube::golang::setup_env | ||||
| CODEGEN_PKG=./vendor/k8s.io/code-generator vendor/k8s.io/code-generator/hack/verify-codegen.sh | ||||
| CODEGEN_PKG=./vendor/k8s.io/code-generator vendor/k8s.io/kube-aggregator/hack/verify-codegen.sh | ||||
| CODEGEN_PKG=./vendor/k8s.io/code-generator vendor/k8s.io/sample-apiserver/hack/verify-codegen.sh | ||||
| CODEGEN_PKG=./vendor/k8s.io/code-generator vendor/k8s.io/sample-controller/hack/verify-codegen.sh | ||||
| CODEGEN_PKG=./vendor/k8s.io/code-generator vendor/k8s.io/apiextensions-apiserver/hack/verify-codegen.sh | ||||
| CODEGEN_PKG=./vendor/k8s.io/code-generator vendor/k8s.io/metrics/hack/verify-codegen.sh | ||||
|  | ||||
|   | ||||
| @@ -208,6 +208,7 @@ filegroup( | ||||
|         "//staging/src/k8s.io/metrics/pkg/client/clientset_generated/clientset:all-srcs", | ||||
|         "//staging/src/k8s.io/metrics/pkg/client/custom_metrics:all-srcs", | ||||
|         "//staging/src/k8s.io/sample-apiserver:all-srcs", | ||||
|         "//staging/src/k8s.io/sample-controller:all-srcs", | ||||
|     ], | ||||
|     tags = ["automanaged"], | ||||
| ) | ||||
|   | ||||
							
								
								
									
										64
									
								
								staging/src/k8s.io/sample-controller/BUILD
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										64
									
								
								staging/src/k8s.io/sample-controller/BUILD
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,64 @@ | ||||
| load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library") | ||||
|  | ||||
| go_library( | ||||
|     name = "go_default_library", | ||||
|     srcs = [ | ||||
|         "controller.go", | ||||
|         "main.go", | ||||
|     ], | ||||
|     importpath = "k8s.io/sample-controller", | ||||
|     visibility = ["//visibility:private"], | ||||
|     deps = [ | ||||
|         "//vendor/github.com/golang/glog:go_default_library", | ||||
|         "//vendor/k8s.io/api/apps/v1beta2:go_default_library", | ||||
|         "//vendor/k8s.io/api/core/v1:go_default_library", | ||||
|         "//vendor/k8s.io/apimachinery/pkg/api/errors:go_default_library", | ||||
|         "//vendor/k8s.io/apimachinery/pkg/apis/meta/v1:go_default_library", | ||||
|         "//vendor/k8s.io/apimachinery/pkg/runtime/schema:go_default_library", | ||||
|         "//vendor/k8s.io/apimachinery/pkg/util/runtime:go_default_library", | ||||
|         "//vendor/k8s.io/apimachinery/pkg/util/wait:go_default_library", | ||||
|         "//vendor/k8s.io/client-go/informers:go_default_library", | ||||
|         "//vendor/k8s.io/client-go/kubernetes:go_default_library", | ||||
|         "//vendor/k8s.io/client-go/kubernetes/scheme:go_default_library", | ||||
|         "//vendor/k8s.io/client-go/kubernetes/typed/core/v1:go_default_library", | ||||
|         "//vendor/k8s.io/client-go/listers/apps/v1beta2:go_default_library", | ||||
|         "//vendor/k8s.io/client-go/tools/cache:go_default_library", | ||||
|         "//vendor/k8s.io/client-go/tools/clientcmd:go_default_library", | ||||
|         "//vendor/k8s.io/client-go/tools/record:go_default_library", | ||||
|         "//vendor/k8s.io/client-go/util/workqueue:go_default_library", | ||||
|         "//vendor/k8s.io/sample-controller/pkg/apis/samplecontroller/v1alpha1:go_default_library", | ||||
|         "//vendor/k8s.io/sample-controller/pkg/client/clientset/versioned:go_default_library", | ||||
|         "//vendor/k8s.io/sample-controller/pkg/client/clientset/versioned/scheme:go_default_library", | ||||
|         "//vendor/k8s.io/sample-controller/pkg/client/informers/externalversions:go_default_library", | ||||
|         "//vendor/k8s.io/sample-controller/pkg/client/listers/samplecontroller/v1alpha1:go_default_library", | ||||
|         "//vendor/k8s.io/sample-controller/pkg/signals:go_default_library", | ||||
|     ], | ||||
| ) | ||||
|  | ||||
| go_binary( | ||||
|     name = "sample-controller", | ||||
|     importpath = "k8s.io/sample-controller", | ||||
|     library = ":go_default_library", | ||||
|     visibility = ["//visibility:public"], | ||||
| ) | ||||
|  | ||||
| filegroup( | ||||
|     name = "package-srcs", | ||||
|     srcs = glob(["**"]), | ||||
|     tags = ["automanaged"], | ||||
|     visibility = ["//visibility:private"], | ||||
| ) | ||||
|  | ||||
| filegroup( | ||||
|     name = "all-srcs", | ||||
|     srcs = [ | ||||
|         ":package-srcs", | ||||
|         "//staging/src/k8s.io/sample-controller/pkg/apis/samplecontroller:all-srcs", | ||||
|         "//staging/src/k8s.io/sample-controller/pkg/client/clientset/versioned:all-srcs", | ||||
|         "//staging/src/k8s.io/sample-controller/pkg/client/informers/externalversions:all-srcs", | ||||
|         "//staging/src/k8s.io/sample-controller/pkg/client/listers/samplecontroller/v1alpha1:all-srcs", | ||||
|         "//staging/src/k8s.io/sample-controller/pkg/signals:all-srcs", | ||||
|     ], | ||||
|     tags = ["automanaged"], | ||||
|     visibility = ["//visibility:public"], | ||||
| ) | ||||
							
								
								
									
										946
									
								
								staging/src/k8s.io/sample-controller/Godeps/Godeps.json
									
									
									
										generated
									
									
									
										Normal file
									
								
							
							
						
						
									
										946
									
								
								staging/src/k8s.io/sample-controller/Godeps/Godeps.json
									
									
									
										generated
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,946 @@ | ||||
| { | ||||
| 	"ImportPath": "k8s.io/sample-controller", | ||||
| 	"GoVersion": "go1.8", | ||||
| 	"GodepVersion": "v79", | ||||
| 	"Packages": [ | ||||
| 		"./..." | ||||
| 	], | ||||
| 	"Deps": [ | ||||
| 		{ | ||||
| 			"ImportPath": "github.com/PuerkitoBio/purell", | ||||
| 			"Rev": "8a290539e2e8629dbc4e6bad948158f790ec31f4" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "github.com/PuerkitoBio/urlesc", | ||||
| 			"Rev": "5bd2802263f21d8788851d5305584c82a5c75d7e" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "github.com/davecgh/go-spew/spew", | ||||
| 			"Rev": "782f4967f2dc4564575ca782fe2d04090b5faca8" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "github.com/emicklei/go-restful", | ||||
| 			"Rev": "ff4f55a206334ef123e4f79bbf348980da81ca46" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "github.com/emicklei/go-restful/log", | ||||
| 			"Rev": "ff4f55a206334ef123e4f79bbf348980da81ca46" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "github.com/ghodss/yaml", | ||||
| 			"Rev": "73d445a93680fa1a78ae23a5839bad48f32ba1ee" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "github.com/go-openapi/jsonpointer", | ||||
| 			"Rev": "46af16f9f7b149af66e5d1bd010e3574dc06de98" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "github.com/go-openapi/jsonreference", | ||||
| 			"Rev": "13c6e3589ad90f49bd3e3bbe2c2cb3d7a4142272" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "github.com/go-openapi/spec", | ||||
| 			"Rev": "7abd5745472fff5eb3685386d5fb8bf38683154d" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "github.com/go-openapi/swag", | ||||
| 			"Rev": "f3f9494671f93fcff853e3c6e9e948b3eb71e590" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "github.com/gogo/protobuf/proto", | ||||
| 			"Rev": "c0656edd0d9eab7c66d1eb0c568f9039345796f7" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "github.com/gogo/protobuf/sortkeys", | ||||
| 			"Rev": "c0656edd0d9eab7c66d1eb0c568f9039345796f7" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "github.com/golang/glog", | ||||
| 			"Rev": "44145f04b68cf362d9c4df2182967c2275eaefed" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "github.com/golang/groupcache/lru", | ||||
| 			"Rev": "02826c3e79038b59d737d3b1c0a1d937f71a4433" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "github.com/golang/protobuf/proto", | ||||
| 			"Rev": "4bd1920723d7b7c925de087aa32e2187708897f7" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "github.com/golang/protobuf/ptypes", | ||||
| 			"Rev": "4bd1920723d7b7c925de087aa32e2187708897f7" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "github.com/golang/protobuf/ptypes/any", | ||||
| 			"Rev": "4bd1920723d7b7c925de087aa32e2187708897f7" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "github.com/golang/protobuf/ptypes/duration", | ||||
| 			"Rev": "4bd1920723d7b7c925de087aa32e2187708897f7" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "github.com/golang/protobuf/ptypes/timestamp", | ||||
| 			"Rev": "4bd1920723d7b7c925de087aa32e2187708897f7" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "github.com/google/btree", | ||||
| 			"Rev": "7d79101e329e5a3adf994758c578dab82b90c017" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "github.com/google/gofuzz", | ||||
| 			"Rev": "44d81051d367757e1c7c6a5a86423ece9afcf63c" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "github.com/googleapis/gnostic/OpenAPIv2", | ||||
| 			"Rev": "0c5108395e2debce0d731cf0287ddf7242066aba" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "github.com/googleapis/gnostic/compiler", | ||||
| 			"Rev": "0c5108395e2debce0d731cf0287ddf7242066aba" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "github.com/googleapis/gnostic/extensions", | ||||
| 			"Rev": "0c5108395e2debce0d731cf0287ddf7242066aba" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "github.com/gregjones/httpcache", | ||||
| 			"Rev": "787624de3eb7bd915c329cba748687a3b22666a6" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "github.com/gregjones/httpcache/diskcache", | ||||
| 			"Rev": "787624de3eb7bd915c329cba748687a3b22666a6" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "github.com/hashicorp/golang-lru", | ||||
| 			"Rev": "a0d98a5f288019575c6d1f4bb1573fef2d1fcdc4" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "github.com/hashicorp/golang-lru/simplelru", | ||||
| 			"Rev": "a0d98a5f288019575c6d1f4bb1573fef2d1fcdc4" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "github.com/howeyc/gopass", | ||||
| 			"Rev": "bf9dde6d0d2c004a008c27aaee91170c786f6db8" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "github.com/imdario/mergo", | ||||
| 			"Rev": "6633656539c1639d9d78127b7d47c622b5d7b6dc" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "github.com/json-iterator/go", | ||||
| 			"Rev": "36b14963da70d11297d313183d7e6388c8510e1e" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "github.com/juju/ratelimit", | ||||
| 			"Rev": "5b9ff866471762aa2ab2dced63c9fb6f53921342" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "github.com/mailru/easyjson/buffer", | ||||
| 			"Rev": "2f5df55504ebc322e4d52d34df6a1f5b503bf26d" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "github.com/mailru/easyjson/jlexer", | ||||
| 			"Rev": "2f5df55504ebc322e4d52d34df6a1f5b503bf26d" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "github.com/mailru/easyjson/jwriter", | ||||
| 			"Rev": "2f5df55504ebc322e4d52d34df6a1f5b503bf26d" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "github.com/peterbourgon/diskv", | ||||
| 			"Rev": "5f041e8faa004a95c88a202771f4cc3e991971e6" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "github.com/spf13/pflag", | ||||
| 			"Rev": "9ff6c6923cfffbcd502984b8e0c80539a94968b7" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "golang.org/x/crypto/ssh/terminal", | ||||
| 			"Rev": "81e90905daefcd6fd217b62423c0908922eadb30" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "golang.org/x/net/context", | ||||
| 			"Rev": "1c05540f6879653db88113bc4a2b70aec4bd491f" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "golang.org/x/net/http2", | ||||
| 			"Rev": "1c05540f6879653db88113bc4a2b70aec4bd491f" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "golang.org/x/net/http2/hpack", | ||||
| 			"Rev": "1c05540f6879653db88113bc4a2b70aec4bd491f" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "golang.org/x/net/idna", | ||||
| 			"Rev": "1c05540f6879653db88113bc4a2b70aec4bd491f" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "golang.org/x/net/lex/httplex", | ||||
| 			"Rev": "1c05540f6879653db88113bc4a2b70aec4bd491f" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "golang.org/x/sys/unix", | ||||
| 			"Rev": "7ddbeae9ae08c6a06a59597f0c9edbc5ff2444ce" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "golang.org/x/sys/windows", | ||||
| 			"Rev": "7ddbeae9ae08c6a06a59597f0c9edbc5ff2444ce" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "golang.org/x/text/cases", | ||||
| 			"Rev": "b19bf474d317b857955b12035d2c5acb57ce8b01" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "golang.org/x/text/internal", | ||||
| 			"Rev": "b19bf474d317b857955b12035d2c5acb57ce8b01" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "golang.org/x/text/internal/tag", | ||||
| 			"Rev": "b19bf474d317b857955b12035d2c5acb57ce8b01" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "golang.org/x/text/language", | ||||
| 			"Rev": "b19bf474d317b857955b12035d2c5acb57ce8b01" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "golang.org/x/text/runes", | ||||
| 			"Rev": "b19bf474d317b857955b12035d2c5acb57ce8b01" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "golang.org/x/text/secure/bidirule", | ||||
| 			"Rev": "b19bf474d317b857955b12035d2c5acb57ce8b01" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "golang.org/x/text/secure/precis", | ||||
| 			"Rev": "b19bf474d317b857955b12035d2c5acb57ce8b01" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "golang.org/x/text/transform", | ||||
| 			"Rev": "b19bf474d317b857955b12035d2c5acb57ce8b01" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "golang.org/x/text/unicode/bidi", | ||||
| 			"Rev": "b19bf474d317b857955b12035d2c5acb57ce8b01" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "golang.org/x/text/unicode/norm", | ||||
| 			"Rev": "b19bf474d317b857955b12035d2c5acb57ce8b01" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "golang.org/x/text/width", | ||||
| 			"Rev": "b19bf474d317b857955b12035d2c5acb57ce8b01" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "gopkg.in/inf.v0", | ||||
| 			"Rev": "3887ee99ecf07df5b447e9b00d9c0b2adaa9f3e4" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "gopkg.in/yaml.v2", | ||||
| 			"Rev": "53feefa2559fb8dfa8d81baad31be332c97d6c77" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/api/admissionregistration/v1alpha1", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/api/apps/v1", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/api/apps/v1beta1", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/api/apps/v1beta2", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/api/authentication/v1", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/api/authentication/v1beta1", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/api/authorization/v1", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/api/authorization/v1beta1", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/api/autoscaling/v1", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/api/autoscaling/v2beta1", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/api/batch/v1", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/api/batch/v1beta1", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/api/batch/v2alpha1", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/api/certificates/v1beta1", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/api/core/v1", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/api/extensions/v1beta1", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/api/networking/v1", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/api/policy/v1beta1", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/api/rbac/v1", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/api/rbac/v1alpha1", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/api/rbac/v1beta1", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/api/scheduling/v1alpha1", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/api/settings/v1alpha1", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/api/storage/v1", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/api/storage/v1beta1", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/apimachinery/pkg/api/equality", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/apimachinery/pkg/api/errors", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/apimachinery/pkg/api/meta", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/apimachinery/pkg/api/resource", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/apimachinery/pkg/apis/meta/internalversion", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/apimachinery/pkg/apis/meta/v1", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/apimachinery/pkg/apis/meta/v1/unstructured", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/apimachinery/pkg/apis/meta/v1alpha1", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/apimachinery/pkg/conversion", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/apimachinery/pkg/conversion/queryparams", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/apimachinery/pkg/conversion/unstructured", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/apimachinery/pkg/fields", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/apimachinery/pkg/labels", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/apimachinery/pkg/runtime", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/apimachinery/pkg/runtime/schema", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/apimachinery/pkg/runtime/serializer", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/apimachinery/pkg/runtime/serializer/json", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/apimachinery/pkg/runtime/serializer/protobuf", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/apimachinery/pkg/runtime/serializer/recognizer", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/apimachinery/pkg/runtime/serializer/streaming", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/apimachinery/pkg/runtime/serializer/versioning", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/apimachinery/pkg/selection", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/apimachinery/pkg/types", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/apimachinery/pkg/util/cache", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/apimachinery/pkg/util/clock", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/apimachinery/pkg/util/diff", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/apimachinery/pkg/util/errors", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/apimachinery/pkg/util/framer", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/apimachinery/pkg/util/intstr", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/apimachinery/pkg/util/json", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/apimachinery/pkg/util/mergepatch", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/apimachinery/pkg/util/net", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/apimachinery/pkg/util/runtime", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/apimachinery/pkg/util/sets", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/apimachinery/pkg/util/strategicpatch", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/apimachinery/pkg/util/validation", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/apimachinery/pkg/util/validation/field", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/apimachinery/pkg/util/wait", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/apimachinery/pkg/util/yaml", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/apimachinery/pkg/version", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/apimachinery/pkg/watch", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/apimachinery/third_party/forked/golang/json", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/apimachinery/third_party/forked/golang/reflect", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/client-go/discovery", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/client-go/discovery/fake", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/client-go/informers", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/client-go/informers/admissionregistration", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/client-go/informers/admissionregistration/v1alpha1", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/client-go/informers/apps", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/client-go/informers/apps/v1", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/client-go/informers/apps/v1beta1", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/client-go/informers/apps/v1beta2", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/client-go/informers/autoscaling", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/client-go/informers/autoscaling/v1", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/client-go/informers/autoscaling/v2beta1", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/client-go/informers/batch", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/client-go/informers/batch/v1", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/client-go/informers/batch/v1beta1", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/client-go/informers/batch/v2alpha1", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/client-go/informers/certificates", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/client-go/informers/certificates/v1beta1", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/client-go/informers/core", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/client-go/informers/core/v1", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/client-go/informers/extensions", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/client-go/informers/extensions/v1beta1", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/client-go/informers/internalinterfaces", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/client-go/informers/networking", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/client-go/informers/networking/v1", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/client-go/informers/policy", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/client-go/informers/policy/v1beta1", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/client-go/informers/rbac", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/client-go/informers/rbac/v1", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/client-go/informers/rbac/v1alpha1", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/client-go/informers/rbac/v1beta1", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/client-go/informers/scheduling", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/client-go/informers/scheduling/v1alpha1", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/client-go/informers/settings", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/client-go/informers/settings/v1alpha1", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/client-go/informers/storage", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/client-go/informers/storage/v1", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/client-go/informers/storage/v1beta1", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/client-go/kubernetes", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/client-go/kubernetes/scheme", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/client-go/kubernetes/typed/admissionregistration/v1alpha1", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/client-go/kubernetes/typed/apps/v1", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/client-go/kubernetes/typed/apps/v1beta1", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/client-go/kubernetes/typed/apps/v1beta2", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/client-go/kubernetes/typed/authentication/v1", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/client-go/kubernetes/typed/authentication/v1beta1", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/client-go/kubernetes/typed/authorization/v1", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/client-go/kubernetes/typed/authorization/v1beta1", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/client-go/kubernetes/typed/autoscaling/v1", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/client-go/kubernetes/typed/autoscaling/v2beta1", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/client-go/kubernetes/typed/batch/v1", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/client-go/kubernetes/typed/batch/v1beta1", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/client-go/kubernetes/typed/batch/v2alpha1", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/client-go/kubernetes/typed/certificates/v1beta1", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/client-go/kubernetes/typed/core/v1", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/client-go/kubernetes/typed/extensions/v1beta1", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/client-go/kubernetes/typed/networking/v1", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/client-go/kubernetes/typed/policy/v1beta1", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/client-go/kubernetes/typed/rbac/v1", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/client-go/kubernetes/typed/rbac/v1alpha1", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/client-go/kubernetes/typed/rbac/v1beta1", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/client-go/kubernetes/typed/scheduling/v1alpha1", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/client-go/kubernetes/typed/settings/v1alpha1", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/client-go/kubernetes/typed/storage/v1", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/client-go/kubernetes/typed/storage/v1beta1", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/client-go/listers/admissionregistration/v1alpha1", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/client-go/listers/apps/v1", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/client-go/listers/apps/v1beta1", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/client-go/listers/apps/v1beta2", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/client-go/listers/autoscaling/v1", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/client-go/listers/autoscaling/v2beta1", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/client-go/listers/batch/v1", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/client-go/listers/batch/v1beta1", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/client-go/listers/batch/v2alpha1", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/client-go/listers/certificates/v1beta1", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/client-go/listers/core/v1", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/client-go/listers/extensions/v1beta1", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/client-go/listers/networking/v1", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/client-go/listers/policy/v1beta1", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/client-go/listers/rbac/v1", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/client-go/listers/rbac/v1alpha1", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/client-go/listers/rbac/v1beta1", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/client-go/listers/scheduling/v1alpha1", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/client-go/listers/settings/v1alpha1", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/client-go/listers/storage/v1", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/client-go/listers/storage/v1beta1", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/client-go/pkg/version", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/client-go/rest", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/client-go/rest/watch", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/client-go/testing", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/client-go/tools/auth", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/client-go/tools/cache", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/client-go/tools/clientcmd", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/client-go/tools/clientcmd/api", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/client-go/tools/clientcmd/api/latest", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/client-go/tools/clientcmd/api/v1", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/client-go/tools/metrics", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/client-go/tools/pager", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/client-go/tools/record", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/client-go/tools/reference", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/client-go/transport", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/client-go/util/buffer", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/client-go/util/cert", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/client-go/util/flowcontrol", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/client-go/util/homedir", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/client-go/util/integer", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/client-go/util/workqueue", | ||||
| 			"Rev": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | ||||
| 		}, | ||||
| 		{ | ||||
| 			"ImportPath": "k8s.io/kube-openapi/pkg/common", | ||||
| 			"Rev": "868f2f29720b192240e18284659231b440f9cda5" | ||||
| 		} | ||||
| 	] | ||||
| } | ||||
							
								
								
									
										5
									
								
								staging/src/k8s.io/sample-controller/Godeps/Readme
									
									
									
										generated
									
									
									
										Normal file
									
								
							
							
						
						
									
										5
									
								
								staging/src/k8s.io/sample-controller/Godeps/Readme
									
									
									
										generated
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,5 @@ | ||||
| This directory tree is generated automatically by godep. | ||||
|  | ||||
| Please do not edit. | ||||
|  | ||||
| See https://github.com/tools/godep for more information. | ||||
							
								
								
									
										202
									
								
								staging/src/k8s.io/sample-controller/LICENSE
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										202
									
								
								staging/src/k8s.io/sample-controller/LICENSE
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,202 @@ | ||||
|  | ||||
|                                  Apache License | ||||
|                            Version 2.0, January 2004 | ||||
|                         http://www.apache.org/licenses/ | ||||
|  | ||||
|    TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION | ||||
|  | ||||
|    1. Definitions. | ||||
|  | ||||
|       "License" shall mean the terms and conditions for use, reproduction, | ||||
|       and distribution as defined by Sections 1 through 9 of this document. | ||||
|  | ||||
|       "Licensor" shall mean the copyright owner or entity authorized by | ||||
|       the copyright owner that is granting the License. | ||||
|  | ||||
|       "Legal Entity" shall mean the union of the acting entity and all | ||||
|       other entities that control, are controlled by, or are under common | ||||
|       control with that entity. For the purposes of this definition, | ||||
|       "control" means (i) the power, direct or indirect, to cause the | ||||
|       direction or management of such entity, whether by contract or | ||||
|       otherwise, or (ii) ownership of fifty percent (50%) or more of the | ||||
|       outstanding shares, or (iii) beneficial ownership of such entity. | ||||
|  | ||||
|       "You" (or "Your") shall mean an individual or Legal Entity | ||||
|       exercising permissions granted by this License. | ||||
|  | ||||
|       "Source" form shall mean the preferred form for making modifications, | ||||
|       including but not limited to software source code, documentation | ||||
|       source, and configuration files. | ||||
|  | ||||
|       "Object" form shall mean any form resulting from mechanical | ||||
|       transformation or translation of a Source form, including but | ||||
|       not limited to compiled object code, generated documentation, | ||||
|       and conversions to other media types. | ||||
|  | ||||
|       "Work" shall mean the work of authorship, whether in Source or | ||||
|       Object form, made available under the License, as indicated by a | ||||
|       copyright notice that is included in or attached to the work | ||||
|       (an example is provided in the Appendix below). | ||||
|  | ||||
|       "Derivative Works" shall mean any work, whether in Source or Object | ||||
|       form, that is based on (or derived from) the Work and for which the | ||||
|       editorial revisions, annotations, elaborations, or other modifications | ||||
|       represent, as a whole, an original work of authorship. For the purposes | ||||
|       of this License, Derivative Works shall not include works that remain | ||||
|       separable from, or merely link (or bind by name) to the interfaces of, | ||||
|       the Work and Derivative Works thereof. | ||||
|  | ||||
|       "Contribution" shall mean any work of authorship, including | ||||
|       the original version of the Work and any modifications or additions | ||||
|       to that Work or Derivative Works thereof, that is intentionally | ||||
|       submitted to Licensor for inclusion in the Work by the copyright owner | ||||
|       or by an individual or Legal Entity authorized to submit on behalf of | ||||
|       the copyright owner. For the purposes of this definition, "submitted" | ||||
|       means any form of electronic, verbal, or written communication sent | ||||
|       to the Licensor or its representatives, including but not limited to | ||||
|       communication on electronic mailing lists, source code control systems, | ||||
|       and issue tracking systems that are managed by, or on behalf of, the | ||||
|       Licensor for the purpose of discussing and improving the Work, but | ||||
|       excluding communication that is conspicuously marked or otherwise | ||||
|       designated in writing by the copyright owner as "Not a Contribution." | ||||
|  | ||||
|       "Contributor" shall mean Licensor and any individual or Legal Entity | ||||
|       on behalf of whom a Contribution has been received by Licensor and | ||||
|       subsequently incorporated within the Work. | ||||
|  | ||||
|    2. Grant of Copyright License. Subject to the terms and conditions of | ||||
|       this License, each Contributor hereby grants to You a perpetual, | ||||
|       worldwide, non-exclusive, no-charge, royalty-free, irrevocable | ||||
|       copyright license to reproduce, prepare Derivative Works of, | ||||
|       publicly display, publicly perform, sublicense, and distribute the | ||||
|       Work and such Derivative Works in Source or Object form. | ||||
|  | ||||
|    3. Grant of Patent License. Subject to the terms and conditions of | ||||
|       this License, each Contributor hereby grants to You a perpetual, | ||||
|       worldwide, non-exclusive, no-charge, royalty-free, irrevocable | ||||
|       (except as stated in this section) patent license to make, have made, | ||||
|       use, offer to sell, sell, import, and otherwise transfer the Work, | ||||
|       where such license applies only to those patent claims licensable | ||||
|       by such Contributor that are necessarily infringed by their | ||||
|       Contribution(s) alone or by combination of their Contribution(s) | ||||
|       with the Work to which such Contribution(s) was submitted. If You | ||||
|       institute patent litigation against any entity (including a | ||||
|       cross-claim or counterclaim in a lawsuit) alleging that the Work | ||||
|       or a Contribution incorporated within the Work constitutes direct | ||||
|       or contributory patent infringement, then any patent licenses | ||||
|       granted to You under this License for that Work shall terminate | ||||
|       as of the date such litigation is filed. | ||||
|  | ||||
|    4. Redistribution. You may reproduce and distribute copies of the | ||||
|       Work or Derivative Works thereof in any medium, with or without | ||||
|       modifications, and in Source or Object form, provided that You | ||||
|       meet the following conditions: | ||||
|  | ||||
|       (a) You must give any other recipients of the Work or | ||||
|           Derivative Works a copy of this License; and | ||||
|  | ||||
|       (b) You must cause any modified files to carry prominent notices | ||||
|           stating that You changed the files; and | ||||
|  | ||||
|       (c) You must retain, in the Source form of any Derivative Works | ||||
|           that You distribute, all copyright, patent, trademark, and | ||||
|           attribution notices from the Source form of the Work, | ||||
|           excluding those notices that do not pertain to any part of | ||||
|           the Derivative Works; and | ||||
|  | ||||
|       (d) If the Work includes a "NOTICE" text file as part of its | ||||
|           distribution, then any Derivative Works that You distribute must | ||||
|           include a readable copy of the attribution notices contained | ||||
|           within such NOTICE file, excluding those notices that do not | ||||
|           pertain to any part of the Derivative Works, in at least one | ||||
|           of the following places: within a NOTICE text file distributed | ||||
|           as part of the Derivative Works; within the Source form or | ||||
|           documentation, if provided along with the Derivative Works; or, | ||||
|           within a display generated by the Derivative Works, if and | ||||
|           wherever such third-party notices normally appear. The contents | ||||
|           of the NOTICE file are for informational purposes only and | ||||
|           do not modify the License. You may add Your own attribution | ||||
|           notices within Derivative Works that You distribute, alongside | ||||
|           or as an addendum to the NOTICE text from the Work, provided | ||||
|           that such additional attribution notices cannot be construed | ||||
|           as modifying the License. | ||||
|  | ||||
|       You may add Your own copyright statement to Your modifications and | ||||
|       may provide additional or different license terms and conditions | ||||
|       for use, reproduction, or distribution of Your modifications, or | ||||
|       for any such Derivative Works as a whole, provided Your use, | ||||
|       reproduction, and distribution of the Work otherwise complies with | ||||
|       the conditions stated in this License. | ||||
|  | ||||
|    5. Submission of Contributions. Unless You explicitly state otherwise, | ||||
|       any Contribution intentionally submitted for inclusion in the Work | ||||
|       by You to the Licensor shall be under the terms and conditions of | ||||
|       this License, without any additional terms or conditions. | ||||
|       Notwithstanding the above, nothing herein shall supersede or modify | ||||
|       the terms of any separate license agreement you may have executed | ||||
|       with Licensor regarding such Contributions. | ||||
|  | ||||
|    6. Trademarks. This License does not grant permission to use the trade | ||||
|       names, trademarks, service marks, or product names of the Licensor, | ||||
|       except as required for reasonable and customary use in describing the | ||||
|       origin of the Work and reproducing the content of the NOTICE file. | ||||
|  | ||||
|    7. Disclaimer of Warranty. Unless required by applicable law or | ||||
|       agreed to in writing, Licensor provides the Work (and each | ||||
|       Contributor provides its Contributions) on an "AS IS" BASIS, | ||||
|       WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or | ||||
|       implied, including, without limitation, any warranties or conditions | ||||
|       of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A | ||||
|       PARTICULAR PURPOSE. You are solely responsible for determining the | ||||
|       appropriateness of using or redistributing the Work and assume any | ||||
|       risks associated with Your exercise of permissions under this License. | ||||
|  | ||||
|    8. Limitation of Liability. In no event and under no legal theory, | ||||
|       whether in tort (including negligence), contract, or otherwise, | ||||
|       unless required by applicable law (such as deliberate and grossly | ||||
|       negligent acts) or agreed to in writing, shall any Contributor be | ||||
|       liable to You for damages, including any direct, indirect, special, | ||||
|       incidental, or consequential damages of any character arising as a | ||||
|       result of this License or out of the use or inability to use the | ||||
|       Work (including but not limited to damages for loss of goodwill, | ||||
|       work stoppage, computer failure or malfunction, or any and all | ||||
|       other commercial damages or losses), even if such Contributor | ||||
|       has been advised of the possibility of such damages. | ||||
|  | ||||
|    9. Accepting Warranty or Additional Liability. While redistributing | ||||
|       the Work or Derivative Works thereof, You may choose to offer, | ||||
|       and charge a fee for, acceptance of support, warranty, indemnity, | ||||
|       or other liability obligations and/or rights consistent with this | ||||
|       License. However, in accepting such obligations, You may act only | ||||
|       on Your own behalf and on Your sole responsibility, not on behalf | ||||
|       of any other Contributor, and only if You agree to indemnify, | ||||
|       defend, and hold each Contributor harmless for any liability | ||||
|       incurred by, or claims asserted against, such Contributor by reason | ||||
|       of your accepting any such warranty or additional liability. | ||||
|  | ||||
|    END OF TERMS AND CONDITIONS | ||||
|  | ||||
|    APPENDIX: How to apply the Apache License to your work. | ||||
|  | ||||
|       To apply the Apache License to your work, attach the following | ||||
|       boilerplate notice, with the fields enclosed by brackets "[]" | ||||
|       replaced with your own identifying information. (Don't include | ||||
|       the brackets!)  The text should be enclosed in the appropriate | ||||
|       comment syntax for the file format. We also recommend that a | ||||
|       file or class name and description of purpose be included on the | ||||
|       same "printed page" as the copyright notice for easier | ||||
|       identification within third-party archives. | ||||
|  | ||||
|    Copyright [yyyy] [name of copyright owner] | ||||
|  | ||||
|    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. | ||||
							
								
								
									
										9
									
								
								staging/src/k8s.io/sample-controller/OWNERS
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										9
									
								
								staging/src/k8s.io/sample-controller/OWNERS
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,9 @@ | ||||
| approvers: | ||||
| - sttts | ||||
| - munnerz | ||||
| reviewers: | ||||
| - gregory-m | ||||
| - kargakis | ||||
| - sttts | ||||
| - munnerz | ||||
| - nikhita | ||||
							
								
								
									
										34
									
								
								staging/src/k8s.io/sample-controller/README.md
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										34
									
								
								staging/src/k8s.io/sample-controller/README.md
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,34 @@ | ||||
| # sample-controller | ||||
|  | ||||
| This repository implements a simple controller for watching Foo resources as | ||||
| defined with a CustomResourceDefinition (CRD). | ||||
|  | ||||
| It makes use of the generators in [k8s.io/code-generator](https://github.com/kubernetes/code-generator) | ||||
| to generate a typed client, informers, listers and deep-copy functions. You can | ||||
| do this yourself using the `./hack/update-codegen.sh` script. | ||||
|  | ||||
| The `update-codegen` script will automatically generate the following files & | ||||
| directories: | ||||
|  | ||||
| * `pkg/apis/samplecontroller/v1alpha1/zz_generated.deepcopy.go` | ||||
| * `pkg/client/` | ||||
|  | ||||
| Changes should not be made to these files manually, and when creating your own | ||||
| controller based off of this implementation you should not copy these files and | ||||
| instead run the `update-codegen` script to generate your own. | ||||
|  | ||||
| # Purpose | ||||
|  | ||||
| This is an example of how to build a kube-like controller with a single type. | ||||
|  | ||||
| # Compatibility | ||||
|  | ||||
| HEAD of this repository will match HEAD of k8s.io/apimachinery and | ||||
| k8s.io/client-go. | ||||
|  | ||||
| # Where does it come from? | ||||
|  | ||||
| `sample-controller` is synced from | ||||
| https://github.com/kubernetes/kubernetes/blob/master/staging/src/k8s.io/sample-controller. | ||||
| Code changes are made in that location, merged into k8s.io/kubernetes and | ||||
| later synced here. | ||||
| @@ -0,0 +1,11 @@ | ||||
| apiVersion: apiextensions.k8s.io/v1beta1 | ||||
| kind: CustomResourceDefinition | ||||
| metadata: | ||||
|   name: foos.samplecontroller.k8s.io | ||||
| spec: | ||||
|   group: samplecontroller.k8s.io | ||||
|   version: v1alpha1 | ||||
|   names: | ||||
|     kind: Foo | ||||
|     plural: foos | ||||
|   scope: Namespaced | ||||
| @@ -0,0 +1,7 @@ | ||||
| apiVersion: samplecontroller.k8s.io/v1alpha1 | ||||
| kind: Foo | ||||
| metadata: | ||||
|   name: example-foo | ||||
| spec: | ||||
|   deploymentName: example-foo | ||||
|   replicas: 1 | ||||
							
								
								
									
										431
									
								
								staging/src/k8s.io/sample-controller/controller.go
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										431
									
								
								staging/src/k8s.io/sample-controller/controller.go
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,431 @@ | ||||
| /* | ||||
| 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 main | ||||
|  | ||||
| import ( | ||||
| 	"fmt" | ||||
| 	"time" | ||||
|  | ||||
| 	"github.com/golang/glog" | ||||
| 	appsv1beta2 "k8s.io/api/apps/v1beta2" | ||||
| 	corev1 "k8s.io/api/core/v1" | ||||
| 	"k8s.io/apimachinery/pkg/api/errors" | ||||
| 	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" | ||||
| 	"k8s.io/apimachinery/pkg/runtime/schema" | ||||
| 	"k8s.io/apimachinery/pkg/util/runtime" | ||||
| 	"k8s.io/apimachinery/pkg/util/wait" | ||||
| 	kubeinformers "k8s.io/client-go/informers" | ||||
| 	"k8s.io/client-go/kubernetes" | ||||
| 	"k8s.io/client-go/kubernetes/scheme" | ||||
| 	typedcorev1 "k8s.io/client-go/kubernetes/typed/core/v1" | ||||
| 	appslisters "k8s.io/client-go/listers/apps/v1beta2" | ||||
| 	"k8s.io/client-go/tools/cache" | ||||
| 	"k8s.io/client-go/tools/record" | ||||
| 	"k8s.io/client-go/util/workqueue" | ||||
|  | ||||
| 	samplev1alpha1 "k8s.io/sample-controller/pkg/apis/samplecontroller/v1alpha1" | ||||
| 	clientset "k8s.io/sample-controller/pkg/client/clientset/versioned" | ||||
| 	samplescheme "k8s.io/sample-controller/pkg/client/clientset/versioned/scheme" | ||||
| 	informers "k8s.io/sample-controller/pkg/client/informers/externalversions" | ||||
| 	listers "k8s.io/sample-controller/pkg/client/listers/samplecontroller/v1alpha1" | ||||
| ) | ||||
|  | ||||
| const controllerAgentName = "sample-controller" | ||||
|  | ||||
| const ( | ||||
| 	// SuccessSynced is used as part of the Event 'reason' when a Foo is synced | ||||
| 	SuccessSynced = "Synced" | ||||
| 	// ErrResourceExists is used as part of the Event 'reason' when a Foo fails | ||||
| 	// to sync due to a Deployment of the same name already existing. | ||||
| 	ErrResourceExists = "ErrResourceExists" | ||||
|  | ||||
| 	// MessageResourceExists is the message used for Events when a resource | ||||
| 	// fails to sync due to a Deployment already existing | ||||
| 	MessageResourceExists = "Resource %q already exists and is not managed by Foo" | ||||
| 	// MessageResourceSynced is the message used for an Event fired when a Foo | ||||
| 	// is synced successfully | ||||
| 	MessageResourceSynced = "Foo synced successfully" | ||||
| ) | ||||
|  | ||||
| // Controller is the controller implementation for Foo resources | ||||
| type Controller struct { | ||||
| 	// kubeclientset is a standard kubernetes clientset | ||||
| 	kubeclientset kubernetes.Interface | ||||
| 	// sampleclientset is a clientset for our own API group | ||||
| 	sampleclientset clientset.Interface | ||||
|  | ||||
| 	deploymentsLister appslisters.DeploymentLister | ||||
| 	deploymentsSynced cache.InformerSynced | ||||
| 	foosLister        listers.FooLister | ||||
| 	foosSynced        cache.InformerSynced | ||||
|  | ||||
| 	// workqueue is a rate limited work queue. This is used to queue work to be | ||||
| 	// processed instead of performing it as soon as a change happens. This | ||||
| 	// means we can ensure we only process a fixed amount of resources at a | ||||
| 	// time, and makes it easy to ensure we are never processing the same item | ||||
| 	// simultaneously in two different workers. | ||||
| 	workqueue workqueue.RateLimitingInterface | ||||
| 	// recorder is an event recorder for recording Event resources to the | ||||
| 	// Kubernetes API. | ||||
| 	recorder record.EventRecorder | ||||
| } | ||||
|  | ||||
| // NewController returns a new sample controller | ||||
| func NewController( | ||||
| 	kubeclientset kubernetes.Interface, | ||||
| 	sampleclientset clientset.Interface, | ||||
| 	kubeInformerFactory kubeinformers.SharedInformerFactory, | ||||
| 	sampleInformerFactory informers.SharedInformerFactory) *Controller { | ||||
|  | ||||
| 	// obtain references to shared index informers for the Deployment and Foo | ||||
| 	// types. | ||||
| 	deploymentInformer := kubeInformerFactory.Apps().V1beta2().Deployments() | ||||
| 	fooInformer := sampleInformerFactory.Samplecontroller().V1alpha1().Foos() | ||||
|  | ||||
| 	// Create event broadcaster | ||||
| 	// Add sample-controller types to the default Kubernetes Scheme so Events can be | ||||
| 	// logged for sample-controller types. | ||||
| 	samplescheme.AddToScheme(scheme.Scheme) | ||||
| 	glog.V(4).Info("Creating event broadcaster") | ||||
| 	eventBroadcaster := record.NewBroadcaster() | ||||
| 	eventBroadcaster.StartLogging(glog.Infof) | ||||
| 	eventBroadcaster.StartRecordingToSink(&typedcorev1.EventSinkImpl{Interface: kubeclientset.CoreV1().Events("")}) | ||||
| 	recorder := eventBroadcaster.NewRecorder(scheme.Scheme, corev1.EventSource{Component: controllerAgentName}) | ||||
|  | ||||
| 	controller := &Controller{ | ||||
| 		kubeclientset:     kubeclientset, | ||||
| 		sampleclientset:   sampleclientset, | ||||
| 		deploymentsLister: deploymentInformer.Lister(), | ||||
| 		deploymentsSynced: deploymentInformer.Informer().HasSynced, | ||||
| 		foosLister:        fooInformer.Lister(), | ||||
| 		foosSynced:        fooInformer.Informer().HasSynced, | ||||
| 		workqueue:         workqueue.NewNamedRateLimitingQueue(workqueue.DefaultControllerRateLimiter(), "Foos"), | ||||
| 		recorder:          recorder, | ||||
| 	} | ||||
|  | ||||
| 	glog.Info("Setting up event handlers") | ||||
| 	// Set up an event handler for when Foo resources change | ||||
| 	fooInformer.Informer().AddEventHandler(cache.ResourceEventHandlerFuncs{ | ||||
| 		AddFunc: controller.enqueueFoo, | ||||
| 		UpdateFunc: func(old, new interface{}) { | ||||
| 			controller.enqueueFoo(new) | ||||
| 		}, | ||||
| 	}) | ||||
| 	// Set up an event handler for when Deployment resources change. This | ||||
| 	// handler will lookup the owner of the given Deployment, and if it is | ||||
| 	// owned by a Foo resource will enqueue that Foo resource for | ||||
| 	// processing. This way, we don't need to implement custom logic for | ||||
| 	// handling Deployment resources. More info on this pattern: | ||||
| 	// https://github.com/kubernetes/community/blob/8cafef897a22026d42f5e5bb3f104febe7e29830/contributors/devel/controllers.md | ||||
| 	deploymentInformer.Informer().AddEventHandler(cache.ResourceEventHandlerFuncs{ | ||||
| 		AddFunc: controller.handleObject, | ||||
| 		UpdateFunc: func(old, new interface{}) { | ||||
| 			newDepl := new.(*appsv1beta2.Deployment) | ||||
| 			oldDepl := old.(*appsv1beta2.Deployment) | ||||
| 			if newDepl.ResourceVersion == oldDepl.ResourceVersion { | ||||
| 				// Periodic resync will send update events for all known Deployments. | ||||
| 				// Two different versions of the same Deployment will always have different RVs. | ||||
| 				return | ||||
| 			} | ||||
| 			controller.handleObject(new) | ||||
| 		}, | ||||
| 		DeleteFunc: controller.handleObject, | ||||
| 	}) | ||||
|  | ||||
| 	return controller | ||||
| } | ||||
|  | ||||
| // Run will set up the event handlers for types we are interested in, as well | ||||
| // as syncing informer caches and starting workers. It will block until stopCh | ||||
| // is closed, at which point it will shutdown the workqueue and wait for | ||||
| // workers to finish processing their current work items. | ||||
| func (c *Controller) Run(threadiness int, stopCh <-chan struct{}) error { | ||||
| 	defer runtime.HandleCrash() | ||||
| 	defer c.workqueue.ShutDown() | ||||
|  | ||||
| 	// Start the informer factories to begin populating the informer caches | ||||
| 	glog.Info("Starting Foo controller") | ||||
|  | ||||
| 	// Wait for the caches to be synced before starting workers | ||||
| 	glog.Info("Waiting for informer caches to sync") | ||||
| 	if ok := cache.WaitForCacheSync(stopCh, c.deploymentsSynced, c.foosSynced); !ok { | ||||
| 		return fmt.Errorf("failed to wait for caches to sync") | ||||
| 	} | ||||
|  | ||||
| 	glog.Info("Starting workers") | ||||
| 	// Launch two workers to process Foo resources | ||||
| 	for i := 0; i < threadiness; i++ { | ||||
| 		go wait.Until(c.runWorker, time.Second, stopCh) | ||||
| 	} | ||||
|  | ||||
| 	glog.Info("Started workers") | ||||
| 	<-stopCh | ||||
| 	glog.Info("Shutting down workers") | ||||
|  | ||||
| 	return nil | ||||
| } | ||||
|  | ||||
| // runWorker is a long-running function that will continually call the | ||||
| // processNextWorkItem function in order to read and process a message on the | ||||
| // workqueue. | ||||
| func (c *Controller) runWorker() { | ||||
| 	for c.processNextWorkItem() { | ||||
| 	} | ||||
| } | ||||
|  | ||||
| // processNextWorkItem will read a single work item off the workqueue and | ||||
| // attempt to process it, by calling the syncHandler. | ||||
| func (c *Controller) processNextWorkItem() bool { | ||||
| 	obj, shutdown := c.workqueue.Get() | ||||
|  | ||||
| 	if shutdown { | ||||
| 		return false | ||||
| 	} | ||||
|  | ||||
| 	// We wrap this block in a func so we can defer c.workqueue.Done. | ||||
| 	err := func(obj interface{}) error { | ||||
| 		// We call Done here so the workqueue knows we have finished | ||||
| 		// processing this item. We also must remember to call Forget if we | ||||
| 		// do not want this work item being re-queued. For example, we do | ||||
| 		// not call Forget if a transient error occurs, instead the item is | ||||
| 		// put back on the workqueue and attempted again after a back-off | ||||
| 		// period. | ||||
| 		defer c.workqueue.Done(obj) | ||||
| 		var key string | ||||
| 		var ok bool | ||||
| 		// We expect strings to come off the workqueue. These are of the | ||||
| 		// form namespace/name. We do this as the delayed nature of the | ||||
| 		// workqueue means the items in the informer cache may actually be | ||||
| 		// more up to date that when the item was initially put onto the | ||||
| 		// workqueue. | ||||
| 		if key, ok = obj.(string); !ok { | ||||
| 			// As the item in the workqueue is actually invalid, we call | ||||
| 			// Forget here else we'd go into a loop of attempting to | ||||
| 			// process a work item that is invalid. | ||||
| 			c.workqueue.Forget(obj) | ||||
| 			runtime.HandleError(fmt.Errorf("expected string in workqueue but got %#v", obj)) | ||||
| 			return nil | ||||
| 		} | ||||
| 		// Run the syncHandler, passing it the namespace/name string of the | ||||
| 		// Foo resource to be synced. | ||||
| 		if err := c.syncHandler(key); err != nil { | ||||
| 			return fmt.Errorf("error syncing '%s': %s", key, err.Error()) | ||||
| 		} | ||||
| 		// Finally, if no error occurs we Forget this item so it does not | ||||
| 		// get queued again until another change happens. | ||||
| 		c.workqueue.Forget(obj) | ||||
| 		glog.Infof("Successfully synced '%s'", key) | ||||
| 		return nil | ||||
| 	}(obj) | ||||
|  | ||||
| 	if err != nil { | ||||
| 		runtime.HandleError(err) | ||||
| 		return true | ||||
| 	} | ||||
|  | ||||
| 	return true | ||||
| } | ||||
|  | ||||
| // syncHandler compares the actual state with the desired, and attempts to | ||||
| // converge the two. It then updates the Status block of the Foo resource | ||||
| // with the current status of the resource. | ||||
| func (c *Controller) syncHandler(key string) error { | ||||
| 	// Convert the namespace/name string into a distinct namespace and name | ||||
| 	namespace, name, err := cache.SplitMetaNamespaceKey(key) | ||||
| 	if err != nil { | ||||
| 		runtime.HandleError(fmt.Errorf("invalid resource key: %s", key)) | ||||
| 		return nil | ||||
| 	} | ||||
|  | ||||
| 	// Get the Foo resource with this namespace/name | ||||
| 	foo, err := c.foosLister.Foos(namespace).Get(name) | ||||
| 	if err != nil { | ||||
| 		// The Foo resource may no longer exist, in which case we stop | ||||
| 		// processing. | ||||
| 		if errors.IsNotFound(err) { | ||||
| 			runtime.HandleError(fmt.Errorf("foo '%s' in work queue no longer exists", key)) | ||||
| 			return nil | ||||
| 		} | ||||
|  | ||||
| 		return err | ||||
| 	} | ||||
|  | ||||
| 	deploymentName := foo.Spec.DeploymentName | ||||
| 	if deploymentName == "" { | ||||
| 		// We choose to absorb the error here as the worker would requeue the | ||||
| 		// resource otherwise. Instead, the next time the resource is updated | ||||
| 		// the resource will be queued again. | ||||
| 		runtime.HandleError(fmt.Errorf("%s: deployment name must be specified", key)) | ||||
| 		return nil | ||||
| 	} | ||||
|  | ||||
| 	// Get the deployment with the name specified in Foo.spec | ||||
| 	deployment, err := c.deploymentsLister.Deployments(foo.Namespace).Get(deploymentName) | ||||
| 	// If the resource doesn't exist, we'll create it | ||||
| 	if errors.IsNotFound(err) { | ||||
| 		deployment, err = c.kubeclientset.AppsV1beta2().Deployments(foo.Namespace).Create(newDeployment(foo)) | ||||
| 	} | ||||
|  | ||||
| 	// If an error occurs during Get/Create, we'll requeue the item so we can | ||||
| 	// attempt processing again later. This could have been caused by a | ||||
| 	// temporary network failure, or any other transient reason. | ||||
| 	if err != nil { | ||||
| 		return err | ||||
| 	} | ||||
|  | ||||
| 	// If the Deployment is not controlled by this Foo resource, we should log | ||||
| 	// a warning to the event recorder and ret | ||||
| 	if !metav1.IsControlledBy(deployment, foo) { | ||||
| 		msg := fmt.Sprintf(MessageResourceExists, deployment.Name) | ||||
| 		c.recorder.Event(foo, corev1.EventTypeWarning, ErrResourceExists, msg) | ||||
| 		return fmt.Errorf(msg) | ||||
| 	} | ||||
|  | ||||
| 	// If this number of the replicas on the Foo resource is specified, and the | ||||
| 	// number does not equal the current desired replicas on the Deployment, we | ||||
| 	// should update the Deployment resource. | ||||
| 	if foo.Spec.Replicas != nil && *foo.Spec.Replicas != *deployment.Spec.Replicas { | ||||
| 		glog.V(4).Infof("Foor: %d, deplR: %d", *foo.Spec.Replicas, *deployment.Spec.Replicas) | ||||
| 		deployment, err = c.kubeclientset.AppsV1beta2().Deployments(foo.Namespace).Update(newDeployment(foo)) | ||||
| 	} | ||||
|  | ||||
| 	// If an error occurs during Update, we'll requeue the item so we can | ||||
| 	// attempt processing again later. THis could have been caused by a | ||||
| 	// temporary network failure, or any other transient reason. | ||||
| 	if err != nil { | ||||
| 		return err | ||||
| 	} | ||||
|  | ||||
| 	// Finally, we update the status block of the Foo resource to reflect the | ||||
| 	// current state of the world | ||||
| 	err = c.updateFooStatus(foo, deployment) | ||||
| 	if err != nil { | ||||
| 		return err | ||||
| 	} | ||||
|  | ||||
| 	c.recorder.Event(foo, corev1.EventTypeNormal, SuccessSynced, MessageResourceSynced) | ||||
| 	return nil | ||||
| } | ||||
|  | ||||
| func (c *Controller) updateFooStatus(foo *samplev1alpha1.Foo, deployment *appsv1beta2.Deployment) error { | ||||
| 	// NEVER modify objects from the store. It's a read-only, local cache. | ||||
| 	// You can use DeepCopy() to make a deep copy of original object and modify this copy | ||||
| 	// Or create a copy manually for better performance | ||||
| 	fooCopy := foo.DeepCopy() | ||||
| 	fooCopy.Status.AvailableReplicas = deployment.Status.AvailableReplicas | ||||
| 	// Until #38113 is merged, we must use Update instead of UpdateStatus to | ||||
| 	// update the Status block of the Foo resource. UpdateStatus will not | ||||
| 	// allow changes to the Spec of the resource, which is ideal for ensuring | ||||
| 	// nothing other than resource status has been updated. | ||||
| 	_, err := c.sampleclientset.SamplecontrollerV1alpha1().Foos(foo.Namespace).Update(fooCopy) | ||||
| 	return err | ||||
| } | ||||
|  | ||||
| // enqueueFoo takes a Foo resource and converts it into a namespace/name | ||||
| // string which is then put onto the work queue. This method should *not* be | ||||
| // passed resources of any type other than Foo. | ||||
| func (c *Controller) enqueueFoo(obj interface{}) { | ||||
| 	var key string | ||||
| 	var err error | ||||
| 	if key, err = cache.MetaNamespaceKeyFunc(obj); err != nil { | ||||
| 		runtime.HandleError(err) | ||||
| 		return | ||||
| 	} | ||||
| 	c.workqueue.AddRateLimited(key) | ||||
| } | ||||
|  | ||||
| // handleObject will take any resource implementing metav1.Object and attempt | ||||
| // to find the Foo resource that 'owns' it. It does this by looking at the | ||||
| // objects metadata.ownerReferences field for an appropriate OwnerReference. | ||||
| // It then enqueues that Foo resource to be processed. If the object does not | ||||
| // have an appropriate OwnerReference, it will simply be skipped. | ||||
| func (c *Controller) handleObject(obj interface{}) { | ||||
| 	var object metav1.Object | ||||
| 	var ok bool | ||||
| 	if object, ok = obj.(metav1.Object); !ok { | ||||
| 		tombstone, ok := obj.(cache.DeletedFinalStateUnknown) | ||||
| 		if !ok { | ||||
| 			runtime.HandleError(fmt.Errorf("error decoding object, invalid type")) | ||||
| 			return | ||||
| 		} | ||||
| 		object, ok = tombstone.Obj.(metav1.Object) | ||||
| 		if !ok { | ||||
| 			runtime.HandleError(fmt.Errorf("error decoding object tombstone, invalid type")) | ||||
| 			return | ||||
| 		} | ||||
| 		glog.V(4).Infof("Recovered deleted object '%s' from tombstone", object.GetName()) | ||||
| 	} | ||||
| 	glog.V(4).Infof("Processing object: %s", object.GetName()) | ||||
| 	if ownerRef := metav1.GetControllerOf(object); ownerRef != nil { | ||||
| 		// If this object is not owned by a Foo, we should not do anything more | ||||
| 		// with it. | ||||
| 		if ownerRef.Kind != "Foo" { | ||||
| 			return | ||||
| 		} | ||||
|  | ||||
| 		foo, err := c.foosLister.Foos(object.GetNamespace()).Get(ownerRef.Name) | ||||
| 		if err != nil { | ||||
| 			glog.V(4).Infof("ignoring orphaned object '%s' of foo '%s'", object.GetSelfLink(), ownerRef.Name) | ||||
| 			return | ||||
| 		} | ||||
|  | ||||
| 		c.enqueueFoo(foo) | ||||
| 		return | ||||
| 	} | ||||
| } | ||||
|  | ||||
| // newDeployment creates a new Deployment for a Foo resource. It also sets | ||||
| // the appropriate OwnerReferences on the resource so handleObject can discover | ||||
| // the Foo resource that 'owns' it. | ||||
| func newDeployment(foo *samplev1alpha1.Foo) *appsv1beta2.Deployment { | ||||
| 	labels := map[string]string{ | ||||
| 		"app":        "nginx", | ||||
| 		"controller": foo.Name, | ||||
| 	} | ||||
| 	return &appsv1beta2.Deployment{ | ||||
| 		ObjectMeta: metav1.ObjectMeta{ | ||||
| 			Name:      foo.Spec.DeploymentName, | ||||
| 			Namespace: foo.Namespace, | ||||
| 			OwnerReferences: []metav1.OwnerReference{ | ||||
| 				*metav1.NewControllerRef(foo, schema.GroupVersionKind{ | ||||
| 					Group:   samplev1alpha1.SchemeGroupVersion.Group, | ||||
| 					Version: samplev1alpha1.SchemeGroupVersion.Version, | ||||
| 					Kind:    "Foo", | ||||
| 				}), | ||||
| 			}, | ||||
| 		}, | ||||
| 		Spec: appsv1beta2.DeploymentSpec{ | ||||
| 			Replicas: foo.Spec.Replicas, | ||||
| 			Selector: &metav1.LabelSelector{ | ||||
| 				MatchLabels: labels, | ||||
| 			}, | ||||
| 			Template: corev1.PodTemplateSpec{ | ||||
| 				ObjectMeta: metav1.ObjectMeta{ | ||||
| 					Labels: labels, | ||||
| 				}, | ||||
| 				Spec: corev1.PodSpec{ | ||||
| 					Containers: []corev1.Container{ | ||||
| 						{ | ||||
| 							Name:  "nginx", | ||||
| 							Image: "nginx:latest", | ||||
| 						}, | ||||
| 					}, | ||||
| 				}, | ||||
| 			}, | ||||
| 		}, | ||||
| 	} | ||||
| } | ||||
| @@ -0,0 +1,16 @@ | ||||
| /* | ||||
| Copyright YEAR The Kubernetes sample-controller 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. | ||||
| */ | ||||
|  | ||||
							
								
								
									
										34
									
								
								staging/src/k8s.io/sample-controller/hack/update-codegen.sh
									
									
									
									
									
										Executable file
									
								
							
							
						
						
									
										34
									
								
								staging/src/k8s.io/sample-controller/hack/update-codegen.sh
									
									
									
									
									
										Executable file
									
								
							| @@ -0,0 +1,34 @@ | ||||
| #!/bin/bash | ||||
|  | ||||
| # 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. | ||||
|  | ||||
| set -o errexit | ||||
| set -o nounset | ||||
| set -o pipefail | ||||
|  | ||||
| SCRIPT_ROOT=$(dirname ${BASH_SOURCE})/.. | ||||
| CODEGEN_PKG=${CODEGEN_PKG:-$(cd ${SCRIPT_ROOT}; ls -d -1 ./vendor/k8s.io/code-generator 2>/dev/null || echo ../code-generator)} | ||||
|  | ||||
| # generate the code with: | ||||
| # --output-base    because this script should also be able to run inside the vendor dir of | ||||
| #                  k8s.io/kubernetes. The output-base is needed for the generators to output into the vendor dir | ||||
| #                  instead of the $GOPATH directly. For normal projects this can be dropped. | ||||
| ${CODEGEN_PKG}/generate-groups.sh "deepcopy,client,informer,lister" \ | ||||
|   k8s.io/sample-controller/pkg/client k8s.io/sample-controller/pkg/apis \ | ||||
|   samplecontroller:v1alpha1 \ | ||||
|   --output-base "$(dirname ${BASH_SOURCE})/../../.." | ||||
|  | ||||
| # To use your own boilerplate text append: | ||||
| #   --go-header-file ${SCRIPT_ROOT}/hack/custom-boilerplate.go.txt | ||||
							
								
								
									
										48
									
								
								staging/src/k8s.io/sample-controller/hack/verify-codegen.sh
									
									
									
									
									
										Executable file
									
								
							
							
						
						
									
										48
									
								
								staging/src/k8s.io/sample-controller/hack/verify-codegen.sh
									
									
									
									
									
										Executable file
									
								
							| @@ -0,0 +1,48 @@ | ||||
| #!/bin/bash | ||||
|  | ||||
| # 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. | ||||
|  | ||||
| set -o errexit | ||||
| set -o nounset | ||||
| set -o pipefail | ||||
|  | ||||
| SCRIPT_ROOT=$(dirname "${BASH_SOURCE}")/.. | ||||
|  | ||||
| DIFFROOT="${SCRIPT_ROOT}/pkg" | ||||
| TMP_DIFFROOT="${SCRIPT_ROOT}/_tmp/pkg" | ||||
| _tmp="${SCRIPT_ROOT}/_tmp" | ||||
|  | ||||
| cleanup() { | ||||
|   rm -rf "${_tmp}" | ||||
| } | ||||
| trap "cleanup" EXIT SIGINT | ||||
|  | ||||
| cleanup | ||||
|  | ||||
| mkdir -p "${TMP_DIFFROOT}" | ||||
| cp -a "${DIFFROOT}"/* "${TMP_DIFFROOT}" | ||||
|  | ||||
| "${SCRIPT_ROOT}/hack/update-codegen.sh" | ||||
| echo "diffing ${DIFFROOT} against freshly generated codegen" | ||||
| ret=0 | ||||
| diff -Naupr "${DIFFROOT}" "${TMP_DIFFROOT}" || ret=$? | ||||
| cp -a "${TMP_DIFFROOT}"/* "${DIFFROOT}" | ||||
| if [[ $ret -eq 0 ]] | ||||
| then | ||||
|   echo "${DIFFROOT} up to date." | ||||
| else | ||||
|   echo "${DIFFROOT} is out of date. Please run hack/update-codegen.sh" | ||||
|   exit 1 | ||||
| fi | ||||
							
								
								
									
										77
									
								
								staging/src/k8s.io/sample-controller/main.go
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										77
									
								
								staging/src/k8s.io/sample-controller/main.go
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,77 @@ | ||||
| /* | ||||
| 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 main | ||||
|  | ||||
| import ( | ||||
| 	"flag" | ||||
| 	"time" | ||||
|  | ||||
| 	"github.com/golang/glog" | ||||
| 	kubeinformers "k8s.io/client-go/informers" | ||||
| 	"k8s.io/client-go/kubernetes" | ||||
| 	"k8s.io/client-go/tools/clientcmd" | ||||
| 	// Uncomment the following line to load the gcp plugin (only required to authenticate against GKE clusters). | ||||
| 	// _ "k8s.io/client-go/plugin/pkg/client/auth/gcp" | ||||
|  | ||||
| 	clientset "k8s.io/sample-controller/pkg/client/clientset/versioned" | ||||
| 	informers "k8s.io/sample-controller/pkg/client/informers/externalversions" | ||||
| 	"k8s.io/sample-controller/pkg/signals" | ||||
| ) | ||||
|  | ||||
| var ( | ||||
| 	masterURL  string | ||||
| 	kubeconfig string | ||||
| ) | ||||
|  | ||||
| func main() { | ||||
| 	flag.Parse() | ||||
|  | ||||
| 	// set up signals so we handle the first shutdown signal gracefully | ||||
| 	stopCh := signals.SetupSignalHandler() | ||||
|  | ||||
| 	cfg, err := clientcmd.BuildConfigFromFlags(masterURL, kubeconfig) | ||||
| 	if err != nil { | ||||
| 		glog.Fatalf("Error building kubeconfig: %s", err.Error()) | ||||
| 	} | ||||
|  | ||||
| 	kubeClient, err := kubernetes.NewForConfig(cfg) | ||||
| 	if err != nil { | ||||
| 		glog.Fatalf("Error building kubernetes clientset: %s", err.Error()) | ||||
| 	} | ||||
|  | ||||
| 	exampleClient, err := clientset.NewForConfig(cfg) | ||||
| 	if err != nil { | ||||
| 		glog.Fatalf("Error building example clientset: %s", err.Error()) | ||||
| 	} | ||||
|  | ||||
| 	kubeInformerFactory := kubeinformers.NewSharedInformerFactory(kubeClient, time.Second*30) | ||||
| 	exampleInformerFactory := informers.NewSharedInformerFactory(exampleClient, time.Second*30) | ||||
|  | ||||
| 	controller := NewController(kubeClient, exampleClient, kubeInformerFactory, exampleInformerFactory) | ||||
|  | ||||
| 	go kubeInformerFactory.Start(stopCh) | ||||
| 	go exampleInformerFactory.Start(stopCh) | ||||
|  | ||||
| 	if err = controller.Run(2, stopCh); err != nil { | ||||
| 		glog.Fatalf("Error running controller: %s", err.Error()) | ||||
| 	} | ||||
| } | ||||
|  | ||||
| func init() { | ||||
| 	flag.StringVar(&kubeconfig, "kubeconfig", "", "Path to a kubeconfig. Only required if out-of-cluster.") | ||||
| 	flag.StringVar(&masterURL, "master", "", "The address of the Kubernetes API server. Overrides any value in kubeconfig. Only required if out-of-cluster.") | ||||
| } | ||||
| @@ -0,0 +1,25 @@ | ||||
| load("@io_bazel_rules_go//go:def.bzl", "go_library") | ||||
|  | ||||
| go_library( | ||||
|     name = "go_default_library", | ||||
|     srcs = ["register.go"], | ||||
|     importpath = "k8s.io/sample-controller/pkg/apis/samplecontroller", | ||||
|     visibility = ["//visibility:public"], | ||||
| ) | ||||
|  | ||||
| filegroup( | ||||
|     name = "package-srcs", | ||||
|     srcs = glob(["**"]), | ||||
|     tags = ["automanaged"], | ||||
|     visibility = ["//visibility:private"], | ||||
| ) | ||||
|  | ||||
| filegroup( | ||||
|     name = "all-srcs", | ||||
|     srcs = [ | ||||
|         ":package-srcs", | ||||
|         "//staging/src/k8s.io/sample-controller/pkg/apis/samplecontroller/v1alpha1:all-srcs", | ||||
|     ], | ||||
|     tags = ["automanaged"], | ||||
|     visibility = ["//visibility:public"], | ||||
| ) | ||||
| @@ -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 samplecontroller | ||||
|  | ||||
| const ( | ||||
| 	GroupName = "samplecontroller.k8s.io" | ||||
| ) | ||||
| @@ -0,0 +1,34 @@ | ||||
| load("@io_bazel_rules_go//go:def.bzl", "go_library") | ||||
|  | ||||
| go_library( | ||||
|     name = "go_default_library", | ||||
|     srcs = [ | ||||
|         "doc.go", | ||||
|         "register.go", | ||||
|         "types.go", | ||||
|         "zz_generated.deepcopy.go", | ||||
|     ], | ||||
|     importpath = "k8s.io/sample-controller/pkg/apis/samplecontroller/v1alpha1", | ||||
|     visibility = ["//visibility:public"], | ||||
|     deps = [ | ||||
|         "//vendor/k8s.io/apimachinery/pkg/apis/meta/v1:go_default_library", | ||||
|         "//vendor/k8s.io/apimachinery/pkg/conversion: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/sample-controller/pkg/apis/samplecontroller:go_default_library", | ||||
|     ], | ||||
| ) | ||||
|  | ||||
| filegroup( | ||||
|     name = "package-srcs", | ||||
|     srcs = glob(["**"]), | ||||
|     tags = ["automanaged"], | ||||
|     visibility = ["//visibility:private"], | ||||
| ) | ||||
|  | ||||
| filegroup( | ||||
|     name = "all-srcs", | ||||
|     srcs = [":package-srcs"], | ||||
|     tags = ["automanaged"], | ||||
|     visibility = ["//visibility:public"], | ||||
| ) | ||||
| @@ -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. | ||||
| */ | ||||
|  | ||||
| // +k8s:deepcopy-gen=package,register | ||||
|  | ||||
| // Package v1alpha1 is the v1alpha1 version of the API. | ||||
| // +groupName=samplecontroller.k8s.io | ||||
| package v1alpha1 | ||||
| @@ -0,0 +1,57 @@ | ||||
| /* | ||||
| 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 v1alpha1 | ||||
|  | ||||
| import ( | ||||
| 	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" | ||||
| 	"k8s.io/apimachinery/pkg/runtime" | ||||
| 	"k8s.io/apimachinery/pkg/runtime/schema" | ||||
|  | ||||
| 	samplecontroller "k8s.io/sample-controller/pkg/apis/samplecontroller" | ||||
| ) | ||||
|  | ||||
| // SchemeGroupVersion is group version used to register these objects | ||||
| var SchemeGroupVersion = schema.GroupVersion{Group: samplecontroller.GroupName, Version: "v1alpha1"} | ||||
|  | ||||
| // Resource takes an unqualified resource and returns a Group qualified GroupResource | ||||
| func Resource(resource string) schema.GroupResource { | ||||
| 	return SchemeGroupVersion.WithResource(resource).GroupResource() | ||||
| } | ||||
|  | ||||
| var ( | ||||
| 	// localSchemeBuilder and AddToScheme will stay in k8s.io/kubernetes. | ||||
| 	SchemeBuilder      runtime.SchemeBuilder | ||||
| 	localSchemeBuilder = &SchemeBuilder | ||||
| 	AddToScheme        = localSchemeBuilder.AddToScheme | ||||
| ) | ||||
|  | ||||
| func init() { | ||||
| 	// We only register manually written functions here. The registration of the | ||||
| 	// generated functions takes place in the generated files. The separation | ||||
| 	// makes the code compile even when the generated files are missing. | ||||
| 	localSchemeBuilder.Register(addKnownTypes) | ||||
| } | ||||
|  | ||||
| // Adds the list of known types to api.Scheme. | ||||
| func addKnownTypes(scheme *runtime.Scheme) error { | ||||
| 	scheme.AddKnownTypes(SchemeGroupVersion, | ||||
| 		&Foo{}, | ||||
| 		&FooList{}, | ||||
| 	) | ||||
| 	metav1.AddToGroupVersion(scheme, SchemeGroupVersion) | ||||
| 	return nil | ||||
| } | ||||
| @@ -0,0 +1,57 @@ | ||||
| /* | ||||
| 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 v1alpha1 | ||||
|  | ||||
| import ( | ||||
| 	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" | ||||
| ) | ||||
|  | ||||
| // +genclient | ||||
| // +genclient:noStatus | ||||
| // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object | ||||
| // +resource:path=foo | ||||
|  | ||||
| // Foo is a specification for a Foo resource | ||||
| type Foo struct { | ||||
| 	metav1.TypeMeta   `json:",inline"` | ||||
| 	metav1.ObjectMeta `json:"metadata,omitempty"` | ||||
|  | ||||
| 	Spec   FooSpec   `json:"spec"` | ||||
| 	Status FooStatus `json:"status"` | ||||
| } | ||||
|  | ||||
| // FooSpec is the spec for a Foo resource | ||||
| type FooSpec struct { | ||||
| 	DeploymentName string `json:"deploymentName"` | ||||
| 	Replicas       *int32 `json:"replicas"` | ||||
| } | ||||
|  | ||||
| // FooStatus is the status for a Foo resource | ||||
| type FooStatus struct { | ||||
| 	AvailableReplicas int32 `json:"availableReplicas"` | ||||
| } | ||||
|  | ||||
| // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object | ||||
| // +resource:path=foos | ||||
|  | ||||
| // FooList is a list of Foo resources | ||||
| type FooList struct { | ||||
| 	metav1.TypeMeta `json:",inline"` | ||||
| 	metav1.ListMeta `json:"metadata"` | ||||
|  | ||||
| 	Items []Foo `json:"items"` | ||||
| } | ||||
| @@ -0,0 +1,160 @@ | ||||
| // +build !ignore_autogenerated | ||||
| 
 | ||||
| /* | ||||
| 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. | ||||
| */ | ||||
| 
 | ||||
| // This file was autogenerated by deepcopy-gen. Do not edit it manually! | ||||
| 
 | ||||
| package v1alpha1 | ||||
| 
 | ||||
| import ( | ||||
| 	conversion "k8s.io/apimachinery/pkg/conversion" | ||||
| 	runtime "k8s.io/apimachinery/pkg/runtime" | ||||
| 	reflect "reflect" | ||||
| ) | ||||
| 
 | ||||
| func init() { | ||||
| 	SchemeBuilder.Register(RegisterDeepCopies) | ||||
| } | ||||
| 
 | ||||
| // RegisterDeepCopies adds deep-copy functions to the given scheme. Public | ||||
| // to allow building arbitrary schemes. | ||||
| // | ||||
| // Deprecated: deepcopy registration will go away when static deepcopy is fully implemented. | ||||
| func RegisterDeepCopies(scheme *runtime.Scheme) error { | ||||
| 	return scheme.AddGeneratedDeepCopyFuncs( | ||||
| 		conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { | ||||
| 			in.(*Foo).DeepCopyInto(out.(*Foo)) | ||||
| 			return nil | ||||
| 		}, InType: reflect.TypeOf(&Foo{})}, | ||||
| 		conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { | ||||
| 			in.(*FooList).DeepCopyInto(out.(*FooList)) | ||||
| 			return nil | ||||
| 		}, InType: reflect.TypeOf(&FooList{})}, | ||||
| 		conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { | ||||
| 			in.(*FooSpec).DeepCopyInto(out.(*FooSpec)) | ||||
| 			return nil | ||||
| 		}, InType: reflect.TypeOf(&FooSpec{})}, | ||||
| 		conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { | ||||
| 			in.(*FooStatus).DeepCopyInto(out.(*FooStatus)) | ||||
| 			return nil | ||||
| 		}, InType: reflect.TypeOf(&FooStatus{})}, | ||||
| 	) | ||||
| } | ||||
| 
 | ||||
| // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. | ||||
| func (in *Foo) DeepCopyInto(out *Foo) { | ||||
| 	*out = *in | ||||
| 	out.TypeMeta = in.TypeMeta | ||||
| 	in.ObjectMeta.DeepCopyInto(&out.ObjectMeta) | ||||
| 	in.Spec.DeepCopyInto(&out.Spec) | ||||
| 	out.Status = in.Status | ||||
| 	return | ||||
| } | ||||
| 
 | ||||
| // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Foo. | ||||
| func (in *Foo) DeepCopy() *Foo { | ||||
| 	if in == nil { | ||||
| 		return nil | ||||
| 	} | ||||
| 	out := new(Foo) | ||||
| 	in.DeepCopyInto(out) | ||||
| 	return out | ||||
| } | ||||
| 
 | ||||
| // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. | ||||
| func (in *Foo) DeepCopyObject() runtime.Object { | ||||
| 	if c := in.DeepCopy(); c != nil { | ||||
| 		return c | ||||
| 	} else { | ||||
| 		return nil | ||||
| 	} | ||||
| } | ||||
| 
 | ||||
| // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. | ||||
| func (in *FooList) DeepCopyInto(out *FooList) { | ||||
| 	*out = *in | ||||
| 	out.TypeMeta = in.TypeMeta | ||||
| 	out.ListMeta = in.ListMeta | ||||
| 	if in.Items != nil { | ||||
| 		in, out := &in.Items, &out.Items | ||||
| 		*out = make([]Foo, len(*in)) | ||||
| 		for i := range *in { | ||||
| 			(*in)[i].DeepCopyInto(&(*out)[i]) | ||||
| 		} | ||||
| 	} | ||||
| 	return | ||||
| } | ||||
| 
 | ||||
| // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FooList. | ||||
| func (in *FooList) DeepCopy() *FooList { | ||||
| 	if in == nil { | ||||
| 		return nil | ||||
| 	} | ||||
| 	out := new(FooList) | ||||
| 	in.DeepCopyInto(out) | ||||
| 	return out | ||||
| } | ||||
| 
 | ||||
| // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. | ||||
| func (in *FooList) DeepCopyObject() runtime.Object { | ||||
| 	if c := in.DeepCopy(); c != nil { | ||||
| 		return c | ||||
| 	} else { | ||||
| 		return nil | ||||
| 	} | ||||
| } | ||||
| 
 | ||||
| // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. | ||||
| func (in *FooSpec) DeepCopyInto(out *FooSpec) { | ||||
| 	*out = *in | ||||
| 	if in.Replicas != nil { | ||||
| 		in, out := &in.Replicas, &out.Replicas | ||||
| 		if *in == nil { | ||||
| 			*out = nil | ||||
| 		} else { | ||||
| 			*out = new(int32) | ||||
| 			**out = **in | ||||
| 		} | ||||
| 	} | ||||
| 	return | ||||
| } | ||||
| 
 | ||||
| // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FooSpec. | ||||
| func (in *FooSpec) DeepCopy() *FooSpec { | ||||
| 	if in == nil { | ||||
| 		return nil | ||||
| 	} | ||||
| 	out := new(FooSpec) | ||||
| 	in.DeepCopyInto(out) | ||||
| 	return out | ||||
| } | ||||
| 
 | ||||
| // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. | ||||
| func (in *FooStatus) DeepCopyInto(out *FooStatus) { | ||||
| 	*out = *in | ||||
| 	return | ||||
| } | ||||
| 
 | ||||
| // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FooStatus. | ||||
| func (in *FooStatus) DeepCopy() *FooStatus { | ||||
| 	if in == nil { | ||||
| 		return nil | ||||
| 	} | ||||
| 	out := new(FooStatus) | ||||
| 	in.DeepCopyInto(out) | ||||
| 	return out | ||||
| } | ||||
| @@ -0,0 +1,37 @@ | ||||
| load("@io_bazel_rules_go//go:def.bzl", "go_library") | ||||
|  | ||||
| go_library( | ||||
|     name = "go_default_library", | ||||
|     srcs = [ | ||||
|         "clientset.go", | ||||
|         "doc.go", | ||||
|     ], | ||||
|     importpath = "k8s.io/sample-controller/pkg/client/clientset/versioned", | ||||
|     visibility = ["//visibility:public"], | ||||
|     deps = [ | ||||
|         "//vendor/github.com/golang/glog:go_default_library", | ||||
|         "//vendor/k8s.io/client-go/discovery:go_default_library", | ||||
|         "//vendor/k8s.io/client-go/rest:go_default_library", | ||||
|         "//vendor/k8s.io/client-go/util/flowcontrol:go_default_library", | ||||
|         "//vendor/k8s.io/sample-controller/pkg/client/clientset/versioned/typed/samplecontroller/v1alpha1: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/sample-controller/pkg/client/clientset/versioned/fake:all-srcs", | ||||
|         "//staging/src/k8s.io/sample-controller/pkg/client/clientset/versioned/scheme:all-srcs", | ||||
|         "//staging/src/k8s.io/sample-controller/pkg/client/clientset/versioned/typed/samplecontroller/v1alpha1:all-srcs", | ||||
|     ], | ||||
|     tags = ["automanaged"], | ||||
|     visibility = ["//visibility:public"], | ||||
| ) | ||||
| @@ -0,0 +1,98 @@ | ||||
| /* | ||||
| 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 versioned | ||||
|  | ||||
| import ( | ||||
| 	glog "github.com/golang/glog" | ||||
| 	discovery "k8s.io/client-go/discovery" | ||||
| 	rest "k8s.io/client-go/rest" | ||||
| 	flowcontrol "k8s.io/client-go/util/flowcontrol" | ||||
| 	samplecontrollerv1alpha1 "k8s.io/sample-controller/pkg/client/clientset/versioned/typed/samplecontroller/v1alpha1" | ||||
| ) | ||||
|  | ||||
| type Interface interface { | ||||
| 	Discovery() discovery.DiscoveryInterface | ||||
| 	SamplecontrollerV1alpha1() samplecontrollerv1alpha1.SamplecontrollerV1alpha1Interface | ||||
| 	// Deprecated: please explicitly pick a version if possible. | ||||
| 	Samplecontroller() samplecontrollerv1alpha1.SamplecontrollerV1alpha1Interface | ||||
| } | ||||
|  | ||||
| // Clientset contains the clients for groups. Each group has exactly one | ||||
| // version included in a Clientset. | ||||
| type Clientset struct { | ||||
| 	*discovery.DiscoveryClient | ||||
| 	samplecontrollerV1alpha1 *samplecontrollerv1alpha1.SamplecontrollerV1alpha1Client | ||||
| } | ||||
|  | ||||
| // SamplecontrollerV1alpha1 retrieves the SamplecontrollerV1alpha1Client | ||||
| func (c *Clientset) SamplecontrollerV1alpha1() samplecontrollerv1alpha1.SamplecontrollerV1alpha1Interface { | ||||
| 	return c.samplecontrollerV1alpha1 | ||||
| } | ||||
|  | ||||
| // Deprecated: Samplecontroller retrieves the default version of SamplecontrollerClient. | ||||
| // Please explicitly pick a version. | ||||
| func (c *Clientset) Samplecontroller() samplecontrollerv1alpha1.SamplecontrollerV1alpha1Interface { | ||||
| 	return c.samplecontrollerV1alpha1 | ||||
| } | ||||
|  | ||||
| // Discovery retrieves the DiscoveryClient | ||||
| func (c *Clientset) Discovery() discovery.DiscoveryInterface { | ||||
| 	if c == nil { | ||||
| 		return nil | ||||
| 	} | ||||
| 	return c.DiscoveryClient | ||||
| } | ||||
|  | ||||
| // NewForConfig creates a new Clientset for the given config. | ||||
| func NewForConfig(c *rest.Config) (*Clientset, error) { | ||||
| 	configShallowCopy := *c | ||||
| 	if configShallowCopy.RateLimiter == nil && configShallowCopy.QPS > 0 { | ||||
| 		configShallowCopy.RateLimiter = flowcontrol.NewTokenBucketRateLimiter(configShallowCopy.QPS, configShallowCopy.Burst) | ||||
| 	} | ||||
| 	var cs Clientset | ||||
| 	var err error | ||||
| 	cs.samplecontrollerV1alpha1, err = samplecontrollerv1alpha1.NewForConfig(&configShallowCopy) | ||||
| 	if err != nil { | ||||
| 		return nil, err | ||||
| 	} | ||||
|  | ||||
| 	cs.DiscoveryClient, err = discovery.NewDiscoveryClientForConfig(&configShallowCopy) | ||||
| 	if err != nil { | ||||
| 		glog.Errorf("failed to create the DiscoveryClient: %v", err) | ||||
| 		return nil, err | ||||
| 	} | ||||
| 	return &cs, nil | ||||
| } | ||||
|  | ||||
| // NewForConfigOrDie creates a new Clientset for the given config and | ||||
| // panics if there is an error in the config. | ||||
| func NewForConfigOrDie(c *rest.Config) *Clientset { | ||||
| 	var cs Clientset | ||||
| 	cs.samplecontrollerV1alpha1 = samplecontrollerv1alpha1.NewForConfigOrDie(c) | ||||
|  | ||||
| 	cs.DiscoveryClient = discovery.NewDiscoveryClientForConfigOrDie(c) | ||||
| 	return &cs | ||||
| } | ||||
|  | ||||
| // New creates a new Clientset for the given RESTClient. | ||||
| func New(c rest.Interface) *Clientset { | ||||
| 	var cs Clientset | ||||
| 	cs.samplecontrollerV1alpha1 = samplecontrollerv1alpha1.New(c) | ||||
|  | ||||
| 	cs.DiscoveryClient = discovery.NewDiscoveryClient(c) | ||||
| 	return &cs | ||||
| } | ||||
| @@ -0,0 +1,18 @@ | ||||
| /* | ||||
| 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. | ||||
| */ | ||||
|  | ||||
| // This package has the automatically generated clientset. | ||||
| package versioned | ||||
| @@ -0,0 +1,40 @@ | ||||
| load("@io_bazel_rules_go//go:def.bzl", "go_library") | ||||
|  | ||||
| go_library( | ||||
|     name = "go_default_library", | ||||
|     srcs = [ | ||||
|         "clientset_generated.go", | ||||
|         "doc.go", | ||||
|         "register.go", | ||||
|     ], | ||||
|     importpath = "k8s.io/sample-controller/pkg/client/clientset/versioned/fake", | ||||
|     visibility = ["//visibility:public"], | ||||
|     deps = [ | ||||
|         "//vendor/k8s.io/apimachinery/pkg/apis/meta/v1: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/runtime/serializer:go_default_library", | ||||
|         "//vendor/k8s.io/apimachinery/pkg/watch:go_default_library", | ||||
|         "//vendor/k8s.io/client-go/discovery:go_default_library", | ||||
|         "//vendor/k8s.io/client-go/discovery/fake:go_default_library", | ||||
|         "//vendor/k8s.io/client-go/testing:go_default_library", | ||||
|         "//vendor/k8s.io/sample-controller/pkg/apis/samplecontroller/v1alpha1:go_default_library", | ||||
|         "//vendor/k8s.io/sample-controller/pkg/client/clientset/versioned:go_default_library", | ||||
|         "//vendor/k8s.io/sample-controller/pkg/client/clientset/versioned/typed/samplecontroller/v1alpha1:go_default_library", | ||||
|         "//vendor/k8s.io/sample-controller/pkg/client/clientset/versioned/typed/samplecontroller/v1alpha1/fake:go_default_library", | ||||
|     ], | ||||
| ) | ||||
|  | ||||
| filegroup( | ||||
|     name = "package-srcs", | ||||
|     srcs = glob(["**"]), | ||||
|     tags = ["automanaged"], | ||||
|     visibility = ["//visibility:private"], | ||||
| ) | ||||
|  | ||||
| filegroup( | ||||
|     name = "all-srcs", | ||||
|     srcs = [":package-srcs"], | ||||
|     tags = ["automanaged"], | ||||
|     visibility = ["//visibility:public"], | ||||
| ) | ||||
| @@ -0,0 +1,71 @@ | ||||
| /* | ||||
| 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 fake | ||||
|  | ||||
| import ( | ||||
| 	"k8s.io/apimachinery/pkg/runtime" | ||||
| 	"k8s.io/apimachinery/pkg/watch" | ||||
| 	"k8s.io/client-go/discovery" | ||||
| 	fakediscovery "k8s.io/client-go/discovery/fake" | ||||
| 	"k8s.io/client-go/testing" | ||||
| 	clientset "k8s.io/sample-controller/pkg/client/clientset/versioned" | ||||
| 	samplecontrollerv1alpha1 "k8s.io/sample-controller/pkg/client/clientset/versioned/typed/samplecontroller/v1alpha1" | ||||
| 	fakesamplecontrollerv1alpha1 "k8s.io/sample-controller/pkg/client/clientset/versioned/typed/samplecontroller/v1alpha1/fake" | ||||
| ) | ||||
|  | ||||
| // NewSimpleClientset returns a clientset that will respond with the provided objects. | ||||
| // It's backed by a very simple object tracker that processes creates, updates and deletions as-is, | ||||
| // without applying any validations and/or defaults. It shouldn't be considered a replacement | ||||
| // for a real clientset and is mostly useful in simple unit tests. | ||||
| func NewSimpleClientset(objects ...runtime.Object) *Clientset { | ||||
| 	o := testing.NewObjectTracker(scheme, codecs.UniversalDecoder()) | ||||
| 	for _, obj := range objects { | ||||
| 		if err := o.Add(obj); err != nil { | ||||
| 			panic(err) | ||||
| 		} | ||||
| 	} | ||||
|  | ||||
| 	fakePtr := testing.Fake{} | ||||
| 	fakePtr.AddReactor("*", "*", testing.ObjectReaction(o)) | ||||
| 	fakePtr.AddWatchReactor("*", testing.DefaultWatchReactor(watch.NewFake(), nil)) | ||||
|  | ||||
| 	return &Clientset{fakePtr, &fakediscovery.FakeDiscovery{Fake: &fakePtr}} | ||||
| } | ||||
|  | ||||
| // Clientset implements clientset.Interface. Meant to be embedded into a | ||||
| // struct to get a default implementation. This makes faking out just the method | ||||
| // you want to test easier. | ||||
| type Clientset struct { | ||||
| 	testing.Fake | ||||
| 	discovery *fakediscovery.FakeDiscovery | ||||
| } | ||||
|  | ||||
| func (c *Clientset) Discovery() discovery.DiscoveryInterface { | ||||
| 	return c.discovery | ||||
| } | ||||
|  | ||||
| var _ clientset.Interface = &Clientset{} | ||||
|  | ||||
| // SamplecontrollerV1alpha1 retrieves the SamplecontrollerV1alpha1Client | ||||
| func (c *Clientset) SamplecontrollerV1alpha1() samplecontrollerv1alpha1.SamplecontrollerV1alpha1Interface { | ||||
| 	return &fakesamplecontrollerv1alpha1.FakeSamplecontrollerV1alpha1{Fake: &c.Fake} | ||||
| } | ||||
|  | ||||
| // Samplecontroller retrieves the SamplecontrollerV1alpha1Client | ||||
| func (c *Clientset) Samplecontroller() samplecontrollerv1alpha1.SamplecontrollerV1alpha1Interface { | ||||
| 	return &fakesamplecontrollerv1alpha1.FakeSamplecontrollerV1alpha1{Fake: &c.Fake} | ||||
| } | ||||
| @@ -0,0 +1,18 @@ | ||||
| /* | ||||
| 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. | ||||
| */ | ||||
|  | ||||
| // This package has the automatically generated fake clientset. | ||||
| package fake | ||||
| @@ -0,0 +1,53 @@ | ||||
| /* | ||||
| 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 fake | ||||
|  | ||||
| import ( | ||||
| 	v1 "k8s.io/apimachinery/pkg/apis/meta/v1" | ||||
| 	runtime "k8s.io/apimachinery/pkg/runtime" | ||||
| 	schema "k8s.io/apimachinery/pkg/runtime/schema" | ||||
| 	serializer "k8s.io/apimachinery/pkg/runtime/serializer" | ||||
| 	samplecontrollerv1alpha1 "k8s.io/sample-controller/pkg/apis/samplecontroller/v1alpha1" | ||||
| ) | ||||
|  | ||||
| var scheme = runtime.NewScheme() | ||||
| var codecs = serializer.NewCodecFactory(scheme) | ||||
| var parameterCodec = runtime.NewParameterCodec(scheme) | ||||
|  | ||||
| func init() { | ||||
| 	v1.AddToGroupVersion(scheme, schema.GroupVersion{Version: "v1"}) | ||||
| 	AddToScheme(scheme) | ||||
| } | ||||
|  | ||||
| // AddToScheme adds all types of this clientset into the given scheme. This allows composition | ||||
| // of clientsets, like in: | ||||
| // | ||||
| //   import ( | ||||
| //     "k8s.io/client-go/kubernetes" | ||||
| //     clientsetscheme "k8s.io/client-go/kuberentes/scheme" | ||||
| //     aggregatorclientsetscheme "k8s.io/kube-aggregator/pkg/client/clientset_generated/clientset/scheme" | ||||
| //   ) | ||||
| // | ||||
| //   kclientset, _ := kubernetes.NewForConfig(c) | ||||
| //   aggregatorclientsetscheme.AddToScheme(clientsetscheme.Scheme) | ||||
| // | ||||
| // After this, RawExtensions in Kubernetes types will serialize kube-aggregator types | ||||
| // correctly. | ||||
| func AddToScheme(scheme *runtime.Scheme) { | ||||
| 	samplecontrollerv1alpha1.AddToScheme(scheme) | ||||
|  | ||||
| } | ||||
| @@ -0,0 +1,32 @@ | ||||
| load("@io_bazel_rules_go//go:def.bzl", "go_library") | ||||
|  | ||||
| go_library( | ||||
|     name = "go_default_library", | ||||
|     srcs = [ | ||||
|         "doc.go", | ||||
|         "register.go", | ||||
|     ], | ||||
|     importpath = "k8s.io/sample-controller/pkg/client/clientset/versioned/scheme", | ||||
|     visibility = ["//visibility:public"], | ||||
|     deps = [ | ||||
|         "//vendor/k8s.io/apimachinery/pkg/apis/meta/v1: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/runtime/serializer:go_default_library", | ||||
|         "//vendor/k8s.io/sample-controller/pkg/apis/samplecontroller/v1alpha1:go_default_library", | ||||
|     ], | ||||
| ) | ||||
|  | ||||
| filegroup( | ||||
|     name = "package-srcs", | ||||
|     srcs = glob(["**"]), | ||||
|     tags = ["automanaged"], | ||||
|     visibility = ["//visibility:private"], | ||||
| ) | ||||
|  | ||||
| filegroup( | ||||
|     name = "all-srcs", | ||||
|     srcs = [":package-srcs"], | ||||
|     tags = ["automanaged"], | ||||
|     visibility = ["//visibility:public"], | ||||
| ) | ||||
| @@ -0,0 +1,18 @@ | ||||
| /* | ||||
| 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. | ||||
| */ | ||||
|  | ||||
| // This package contains the scheme of the automatically generated clientset. | ||||
| package scheme | ||||
| @@ -0,0 +1,53 @@ | ||||
| /* | ||||
| 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 scheme | ||||
|  | ||||
| import ( | ||||
| 	v1 "k8s.io/apimachinery/pkg/apis/meta/v1" | ||||
| 	runtime "k8s.io/apimachinery/pkg/runtime" | ||||
| 	schema "k8s.io/apimachinery/pkg/runtime/schema" | ||||
| 	serializer "k8s.io/apimachinery/pkg/runtime/serializer" | ||||
| 	samplecontrollerv1alpha1 "k8s.io/sample-controller/pkg/apis/samplecontroller/v1alpha1" | ||||
| ) | ||||
|  | ||||
| var Scheme = runtime.NewScheme() | ||||
| var Codecs = serializer.NewCodecFactory(Scheme) | ||||
| var ParameterCodec = runtime.NewParameterCodec(Scheme) | ||||
|  | ||||
| func init() { | ||||
| 	v1.AddToGroupVersion(Scheme, schema.GroupVersion{Version: "v1"}) | ||||
| 	AddToScheme(Scheme) | ||||
| } | ||||
|  | ||||
| // AddToScheme adds all types of this clientset into the given scheme. This allows composition | ||||
| // of clientsets, like in: | ||||
| // | ||||
| //   import ( | ||||
| //     "k8s.io/client-go/kubernetes" | ||||
| //     clientsetscheme "k8s.io/client-go/kuberentes/scheme" | ||||
| //     aggregatorclientsetscheme "k8s.io/kube-aggregator/pkg/client/clientset_generated/clientset/scheme" | ||||
| //   ) | ||||
| // | ||||
| //   kclientset, _ := kubernetes.NewForConfig(c) | ||||
| //   aggregatorclientsetscheme.AddToScheme(clientsetscheme.Scheme) | ||||
| // | ||||
| // After this, RawExtensions in Kubernetes types will serialize kube-aggregator types | ||||
| // correctly. | ||||
| func AddToScheme(scheme *runtime.Scheme) { | ||||
| 	samplecontrollerv1alpha1.AddToScheme(scheme) | ||||
|  | ||||
| } | ||||
| @@ -0,0 +1,39 @@ | ||||
| load("@io_bazel_rules_go//go:def.bzl", "go_library") | ||||
|  | ||||
| go_library( | ||||
|     name = "go_default_library", | ||||
|     srcs = [ | ||||
|         "doc.go", | ||||
|         "foo.go", | ||||
|         "generated_expansion.go", | ||||
|         "samplecontroller_client.go", | ||||
|     ], | ||||
|     importpath = "k8s.io/sample-controller/pkg/client/clientset/versioned/typed/samplecontroller/v1alpha1", | ||||
|     visibility = ["//visibility:public"], | ||||
|     deps = [ | ||||
|         "//vendor/k8s.io/apimachinery/pkg/apis/meta/v1:go_default_library", | ||||
|         "//vendor/k8s.io/apimachinery/pkg/runtime/serializer:go_default_library", | ||||
|         "//vendor/k8s.io/apimachinery/pkg/types:go_default_library", | ||||
|         "//vendor/k8s.io/apimachinery/pkg/watch:go_default_library", | ||||
|         "//vendor/k8s.io/client-go/rest:go_default_library", | ||||
|         "//vendor/k8s.io/sample-controller/pkg/apis/samplecontroller/v1alpha1:go_default_library", | ||||
|         "//vendor/k8s.io/sample-controller/pkg/client/clientset/versioned/scheme: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/sample-controller/pkg/client/clientset/versioned/typed/samplecontroller/v1alpha1/fake:all-srcs", | ||||
|     ], | ||||
|     tags = ["automanaged"], | ||||
|     visibility = ["//visibility:public"], | ||||
| ) | ||||
| @@ -0,0 +1,18 @@ | ||||
| /* | ||||
| 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. | ||||
| */ | ||||
|  | ||||
| // This package has the automatically generated typed clients. | ||||
| package v1alpha1 | ||||
| @@ -0,0 +1,37 @@ | ||||
| load("@io_bazel_rules_go//go:def.bzl", "go_library") | ||||
|  | ||||
| go_library( | ||||
|     name = "go_default_library", | ||||
|     srcs = [ | ||||
|         "doc.go", | ||||
|         "fake_foo.go", | ||||
|         "fake_samplecontroller_client.go", | ||||
|     ], | ||||
|     importpath = "k8s.io/sample-controller/pkg/client/clientset/versioned/typed/samplecontroller/v1alpha1/fake", | ||||
|     visibility = ["//visibility:public"], | ||||
|     deps = [ | ||||
|         "//vendor/k8s.io/apimachinery/pkg/apis/meta/v1:go_default_library", | ||||
|         "//vendor/k8s.io/apimachinery/pkg/labels:go_default_library", | ||||
|         "//vendor/k8s.io/apimachinery/pkg/runtime/schema:go_default_library", | ||||
|         "//vendor/k8s.io/apimachinery/pkg/types:go_default_library", | ||||
|         "//vendor/k8s.io/apimachinery/pkg/watch:go_default_library", | ||||
|         "//vendor/k8s.io/client-go/rest:go_default_library", | ||||
|         "//vendor/k8s.io/client-go/testing:go_default_library", | ||||
|         "//vendor/k8s.io/sample-controller/pkg/apis/samplecontroller/v1alpha1:go_default_library", | ||||
|         "//vendor/k8s.io/sample-controller/pkg/client/clientset/versioned/typed/samplecontroller/v1alpha1:go_default_library", | ||||
|     ], | ||||
| ) | ||||
|  | ||||
| filegroup( | ||||
|     name = "package-srcs", | ||||
|     srcs = glob(["**"]), | ||||
|     tags = ["automanaged"], | ||||
|     visibility = ["//visibility:private"], | ||||
| ) | ||||
|  | ||||
| filegroup( | ||||
|     name = "all-srcs", | ||||
|     srcs = [":package-srcs"], | ||||
|     tags = ["automanaged"], | ||||
|     visibility = ["//visibility:public"], | ||||
| ) | ||||
| @@ -0,0 +1,18 @@ | ||||
| /* | ||||
| 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 fake has the automatically generated clients. | ||||
| package fake | ||||
| @@ -0,0 +1,126 @@ | ||||
| /* | ||||
| 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 fake | ||||
|  | ||||
| import ( | ||||
| 	v1 "k8s.io/apimachinery/pkg/apis/meta/v1" | ||||
| 	labels "k8s.io/apimachinery/pkg/labels" | ||||
| 	schema "k8s.io/apimachinery/pkg/runtime/schema" | ||||
| 	types "k8s.io/apimachinery/pkg/types" | ||||
| 	watch "k8s.io/apimachinery/pkg/watch" | ||||
| 	testing "k8s.io/client-go/testing" | ||||
| 	v1alpha1 "k8s.io/sample-controller/pkg/apis/samplecontroller/v1alpha1" | ||||
| ) | ||||
|  | ||||
| // FakeFoos implements FooInterface | ||||
| type FakeFoos struct { | ||||
| 	Fake *FakeSamplecontrollerV1alpha1 | ||||
| 	ns   string | ||||
| } | ||||
|  | ||||
| var foosResource = schema.GroupVersionResource{Group: "samplecontroller.k8s.io", Version: "v1alpha1", Resource: "foos"} | ||||
|  | ||||
| var foosKind = schema.GroupVersionKind{Group: "samplecontroller.k8s.io", Version: "v1alpha1", Kind: "Foo"} | ||||
|  | ||||
| // Get takes name of the foo, and returns the corresponding foo object, and an error if there is any. | ||||
| func (c *FakeFoos) Get(name string, options v1.GetOptions) (result *v1alpha1.Foo, err error) { | ||||
| 	obj, err := c.Fake. | ||||
| 		Invokes(testing.NewGetAction(foosResource, c.ns, name), &v1alpha1.Foo{}) | ||||
|  | ||||
| 	if obj == nil { | ||||
| 		return nil, err | ||||
| 	} | ||||
| 	return obj.(*v1alpha1.Foo), err | ||||
| } | ||||
|  | ||||
| // List takes label and field selectors, and returns the list of Foos that match those selectors. | ||||
| func (c *FakeFoos) List(opts v1.ListOptions) (result *v1alpha1.FooList, err error) { | ||||
| 	obj, err := c.Fake. | ||||
| 		Invokes(testing.NewListAction(foosResource, foosKind, c.ns, opts), &v1alpha1.FooList{}) | ||||
|  | ||||
| 	if obj == nil { | ||||
| 		return nil, err | ||||
| 	} | ||||
|  | ||||
| 	label, _, _ := testing.ExtractFromListOptions(opts) | ||||
| 	if label == nil { | ||||
| 		label = labels.Everything() | ||||
| 	} | ||||
| 	list := &v1alpha1.FooList{} | ||||
| 	for _, item := range obj.(*v1alpha1.FooList).Items { | ||||
| 		if label.Matches(labels.Set(item.Labels)) { | ||||
| 			list.Items = append(list.Items, item) | ||||
| 		} | ||||
| 	} | ||||
| 	return list, err | ||||
| } | ||||
|  | ||||
| // Watch returns a watch.Interface that watches the requested foos. | ||||
| func (c *FakeFoos) Watch(opts v1.ListOptions) (watch.Interface, error) { | ||||
| 	return c.Fake. | ||||
| 		InvokesWatch(testing.NewWatchAction(foosResource, c.ns, opts)) | ||||
|  | ||||
| } | ||||
|  | ||||
| // Create takes the representation of a foo and creates it.  Returns the server's representation of the foo, and an error, if there is any. | ||||
| func (c *FakeFoos) Create(foo *v1alpha1.Foo) (result *v1alpha1.Foo, err error) { | ||||
| 	obj, err := c.Fake. | ||||
| 		Invokes(testing.NewCreateAction(foosResource, c.ns, foo), &v1alpha1.Foo{}) | ||||
|  | ||||
| 	if obj == nil { | ||||
| 		return nil, err | ||||
| 	} | ||||
| 	return obj.(*v1alpha1.Foo), err | ||||
| } | ||||
|  | ||||
| // Update takes the representation of a foo and updates it. Returns the server's representation of the foo, and an error, if there is any. | ||||
| func (c *FakeFoos) Update(foo *v1alpha1.Foo) (result *v1alpha1.Foo, err error) { | ||||
| 	obj, err := c.Fake. | ||||
| 		Invokes(testing.NewUpdateAction(foosResource, c.ns, foo), &v1alpha1.Foo{}) | ||||
|  | ||||
| 	if obj == nil { | ||||
| 		return nil, err | ||||
| 	} | ||||
| 	return obj.(*v1alpha1.Foo), err | ||||
| } | ||||
|  | ||||
| // Delete takes name of the foo and deletes it. Returns an error if one occurs. | ||||
| func (c *FakeFoos) Delete(name string, options *v1.DeleteOptions) error { | ||||
| 	_, err := c.Fake. | ||||
| 		Invokes(testing.NewDeleteAction(foosResource, c.ns, name), &v1alpha1.Foo{}) | ||||
|  | ||||
| 	return err | ||||
| } | ||||
|  | ||||
| // DeleteCollection deletes a collection of objects. | ||||
| func (c *FakeFoos) DeleteCollection(options *v1.DeleteOptions, listOptions v1.ListOptions) error { | ||||
| 	action := testing.NewDeleteCollectionAction(foosResource, c.ns, listOptions) | ||||
|  | ||||
| 	_, err := c.Fake.Invokes(action, &v1alpha1.FooList{}) | ||||
| 	return err | ||||
| } | ||||
|  | ||||
| // Patch applies the patch and returns the patched foo. | ||||
| func (c *FakeFoos) Patch(name string, pt types.PatchType, data []byte, subresources ...string) (result *v1alpha1.Foo, err error) { | ||||
| 	obj, err := c.Fake. | ||||
| 		Invokes(testing.NewPatchSubresourceAction(foosResource, c.ns, name, data, subresources...), &v1alpha1.Foo{}) | ||||
|  | ||||
| 	if obj == nil { | ||||
| 		return nil, err | ||||
| 	} | ||||
| 	return obj.(*v1alpha1.Foo), err | ||||
| } | ||||
| @@ -0,0 +1,38 @@ | ||||
| /* | ||||
| 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 fake | ||||
|  | ||||
| import ( | ||||
| 	rest "k8s.io/client-go/rest" | ||||
| 	testing "k8s.io/client-go/testing" | ||||
| 	v1alpha1 "k8s.io/sample-controller/pkg/client/clientset/versioned/typed/samplecontroller/v1alpha1" | ||||
| ) | ||||
|  | ||||
| type FakeSamplecontrollerV1alpha1 struct { | ||||
| 	*testing.Fake | ||||
| } | ||||
|  | ||||
| func (c *FakeSamplecontrollerV1alpha1) Foos(namespace string) v1alpha1.FooInterface { | ||||
| 	return &FakeFoos{c, namespace} | ||||
| } | ||||
|  | ||||
| // RESTClient returns a RESTClient that is used to communicate | ||||
| // with API server by this client implementation. | ||||
| func (c *FakeSamplecontrollerV1alpha1) RESTClient() rest.Interface { | ||||
| 	var ret *rest.RESTClient | ||||
| 	return ret | ||||
| } | ||||
| @@ -0,0 +1,155 @@ | ||||
| /* | ||||
| 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 v1alpha1 | ||||
|  | ||||
| import ( | ||||
| 	v1 "k8s.io/apimachinery/pkg/apis/meta/v1" | ||||
| 	types "k8s.io/apimachinery/pkg/types" | ||||
| 	watch "k8s.io/apimachinery/pkg/watch" | ||||
| 	rest "k8s.io/client-go/rest" | ||||
| 	v1alpha1 "k8s.io/sample-controller/pkg/apis/samplecontroller/v1alpha1" | ||||
| 	scheme "k8s.io/sample-controller/pkg/client/clientset/versioned/scheme" | ||||
| ) | ||||
|  | ||||
| // FoosGetter has a method to return a FooInterface. | ||||
| // A group's client should implement this interface. | ||||
| type FoosGetter interface { | ||||
| 	Foos(namespace string) FooInterface | ||||
| } | ||||
|  | ||||
| // FooInterface has methods to work with Foo resources. | ||||
| type FooInterface interface { | ||||
| 	Create(*v1alpha1.Foo) (*v1alpha1.Foo, error) | ||||
| 	Update(*v1alpha1.Foo) (*v1alpha1.Foo, error) | ||||
| 	Delete(name string, options *v1.DeleteOptions) error | ||||
| 	DeleteCollection(options *v1.DeleteOptions, listOptions v1.ListOptions) error | ||||
| 	Get(name string, options v1.GetOptions) (*v1alpha1.Foo, error) | ||||
| 	List(opts v1.ListOptions) (*v1alpha1.FooList, error) | ||||
| 	Watch(opts v1.ListOptions) (watch.Interface, error) | ||||
| 	Patch(name string, pt types.PatchType, data []byte, subresources ...string) (result *v1alpha1.Foo, err error) | ||||
| 	FooExpansion | ||||
| } | ||||
|  | ||||
| // foos implements FooInterface | ||||
| type foos struct { | ||||
| 	client rest.Interface | ||||
| 	ns     string | ||||
| } | ||||
|  | ||||
| // newFoos returns a Foos | ||||
| func newFoos(c *SamplecontrollerV1alpha1Client, namespace string) *foos { | ||||
| 	return &foos{ | ||||
| 		client: c.RESTClient(), | ||||
| 		ns:     namespace, | ||||
| 	} | ||||
| } | ||||
|  | ||||
| // Get takes name of the foo, and returns the corresponding foo object, and an error if there is any. | ||||
| func (c *foos) Get(name string, options v1.GetOptions) (result *v1alpha1.Foo, err error) { | ||||
| 	result = &v1alpha1.Foo{} | ||||
| 	err = c.client.Get(). | ||||
| 		Namespace(c.ns). | ||||
| 		Resource("foos"). | ||||
| 		Name(name). | ||||
| 		VersionedParams(&options, scheme.ParameterCodec). | ||||
| 		Do(). | ||||
| 		Into(result) | ||||
| 	return | ||||
| } | ||||
|  | ||||
| // List takes label and field selectors, and returns the list of Foos that match those selectors. | ||||
| func (c *foos) List(opts v1.ListOptions) (result *v1alpha1.FooList, err error) { | ||||
| 	result = &v1alpha1.FooList{} | ||||
| 	err = c.client.Get(). | ||||
| 		Namespace(c.ns). | ||||
| 		Resource("foos"). | ||||
| 		VersionedParams(&opts, scheme.ParameterCodec). | ||||
| 		Do(). | ||||
| 		Into(result) | ||||
| 	return | ||||
| } | ||||
|  | ||||
| // Watch returns a watch.Interface that watches the requested foos. | ||||
| func (c *foos) Watch(opts v1.ListOptions) (watch.Interface, error) { | ||||
| 	opts.Watch = true | ||||
| 	return c.client.Get(). | ||||
| 		Namespace(c.ns). | ||||
| 		Resource("foos"). | ||||
| 		VersionedParams(&opts, scheme.ParameterCodec). | ||||
| 		Watch() | ||||
| } | ||||
|  | ||||
| // Create takes the representation of a foo and creates it.  Returns the server's representation of the foo, and an error, if there is any. | ||||
| func (c *foos) Create(foo *v1alpha1.Foo) (result *v1alpha1.Foo, err error) { | ||||
| 	result = &v1alpha1.Foo{} | ||||
| 	err = c.client.Post(). | ||||
| 		Namespace(c.ns). | ||||
| 		Resource("foos"). | ||||
| 		Body(foo). | ||||
| 		Do(). | ||||
| 		Into(result) | ||||
| 	return | ||||
| } | ||||
|  | ||||
| // Update takes the representation of a foo and updates it. Returns the server's representation of the foo, and an error, if there is any. | ||||
| func (c *foos) Update(foo *v1alpha1.Foo) (result *v1alpha1.Foo, err error) { | ||||
| 	result = &v1alpha1.Foo{} | ||||
| 	err = c.client.Put(). | ||||
| 		Namespace(c.ns). | ||||
| 		Resource("foos"). | ||||
| 		Name(foo.Name). | ||||
| 		Body(foo). | ||||
| 		Do(). | ||||
| 		Into(result) | ||||
| 	return | ||||
| } | ||||
|  | ||||
| // Delete takes name of the foo and deletes it. Returns an error if one occurs. | ||||
| func (c *foos) Delete(name string, options *v1.DeleteOptions) error { | ||||
| 	return c.client.Delete(). | ||||
| 		Namespace(c.ns). | ||||
| 		Resource("foos"). | ||||
| 		Name(name). | ||||
| 		Body(options). | ||||
| 		Do(). | ||||
| 		Error() | ||||
| } | ||||
|  | ||||
| // DeleteCollection deletes a collection of objects. | ||||
| func (c *foos) DeleteCollection(options *v1.DeleteOptions, listOptions v1.ListOptions) error { | ||||
| 	return c.client.Delete(). | ||||
| 		Namespace(c.ns). | ||||
| 		Resource("foos"). | ||||
| 		VersionedParams(&listOptions, scheme.ParameterCodec). | ||||
| 		Body(options). | ||||
| 		Do(). | ||||
| 		Error() | ||||
| } | ||||
|  | ||||
| // Patch applies the patch and returns the patched foo. | ||||
| func (c *foos) Patch(name string, pt types.PatchType, data []byte, subresources ...string) (result *v1alpha1.Foo, err error) { | ||||
| 	result = &v1alpha1.Foo{} | ||||
| 	err = c.client.Patch(pt). | ||||
| 		Namespace(c.ns). | ||||
| 		Resource("foos"). | ||||
| 		SubResource(subresources...). | ||||
| 		Name(name). | ||||
| 		Body(data). | ||||
| 		Do(). | ||||
| 		Into(result) | ||||
| 	return | ||||
| } | ||||
| @@ -0,0 +1,19 @@ | ||||
| /* | ||||
| 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 v1alpha1 | ||||
|  | ||||
| type FooExpansion interface{} | ||||
| @@ -0,0 +1,88 @@ | ||||
| /* | ||||
| 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 v1alpha1 | ||||
|  | ||||
| import ( | ||||
| 	serializer "k8s.io/apimachinery/pkg/runtime/serializer" | ||||
| 	rest "k8s.io/client-go/rest" | ||||
| 	v1alpha1 "k8s.io/sample-controller/pkg/apis/samplecontroller/v1alpha1" | ||||
| 	"k8s.io/sample-controller/pkg/client/clientset/versioned/scheme" | ||||
| ) | ||||
|  | ||||
| type SamplecontrollerV1alpha1Interface interface { | ||||
| 	RESTClient() rest.Interface | ||||
| 	FoosGetter | ||||
| } | ||||
|  | ||||
| // SamplecontrollerV1alpha1Client is used to interact with features provided by the samplecontroller.k8s.io group. | ||||
| type SamplecontrollerV1alpha1Client struct { | ||||
| 	restClient rest.Interface | ||||
| } | ||||
|  | ||||
| func (c *SamplecontrollerV1alpha1Client) Foos(namespace string) FooInterface { | ||||
| 	return newFoos(c, namespace) | ||||
| } | ||||
|  | ||||
| // NewForConfig creates a new SamplecontrollerV1alpha1Client for the given config. | ||||
| func NewForConfig(c *rest.Config) (*SamplecontrollerV1alpha1Client, error) { | ||||
| 	config := *c | ||||
| 	if err := setConfigDefaults(&config); err != nil { | ||||
| 		return nil, err | ||||
| 	} | ||||
| 	client, err := rest.RESTClientFor(&config) | ||||
| 	if err != nil { | ||||
| 		return nil, err | ||||
| 	} | ||||
| 	return &SamplecontrollerV1alpha1Client{client}, nil | ||||
| } | ||||
|  | ||||
| // NewForConfigOrDie creates a new SamplecontrollerV1alpha1Client for the given config and | ||||
| // panics if there is an error in the config. | ||||
| func NewForConfigOrDie(c *rest.Config) *SamplecontrollerV1alpha1Client { | ||||
| 	client, err := NewForConfig(c) | ||||
| 	if err != nil { | ||||
| 		panic(err) | ||||
| 	} | ||||
| 	return client | ||||
| } | ||||
|  | ||||
| // New creates a new SamplecontrollerV1alpha1Client for the given RESTClient. | ||||
| func New(c rest.Interface) *SamplecontrollerV1alpha1Client { | ||||
| 	return &SamplecontrollerV1alpha1Client{c} | ||||
| } | ||||
|  | ||||
| func setConfigDefaults(config *rest.Config) error { | ||||
| 	gv := v1alpha1.SchemeGroupVersion | ||||
| 	config.GroupVersion = &gv | ||||
| 	config.APIPath = "/apis" | ||||
| 	config.NegotiatedSerializer = serializer.DirectCodecFactory{CodecFactory: scheme.Codecs} | ||||
|  | ||||
| 	if config.UserAgent == "" { | ||||
| 		config.UserAgent = rest.DefaultKubernetesUserAgent() | ||||
| 	} | ||||
|  | ||||
| 	return nil | ||||
| } | ||||
|  | ||||
| // RESTClient returns a RESTClient that is used to communicate | ||||
| // with API server by this client implementation. | ||||
| func (c *SamplecontrollerV1alpha1Client) RESTClient() rest.Interface { | ||||
| 	if c == nil { | ||||
| 		return nil | ||||
| 	} | ||||
| 	return c.restClient | ||||
| } | ||||
| @@ -0,0 +1,38 @@ | ||||
| load("@io_bazel_rules_go//go:def.bzl", "go_library") | ||||
|  | ||||
| go_library( | ||||
|     name = "go_default_library", | ||||
|     srcs = [ | ||||
|         "factory.go", | ||||
|         "generic.go", | ||||
|     ], | ||||
|     importpath = "k8s.io/sample-controller/pkg/client/informers/externalversions", | ||||
|     visibility = ["//visibility:public"], | ||||
|     deps = [ | ||||
|         "//vendor/k8s.io/apimachinery/pkg/runtime:go_default_library", | ||||
|         "//vendor/k8s.io/apimachinery/pkg/runtime/schema:go_default_library", | ||||
|         "//vendor/k8s.io/client-go/tools/cache:go_default_library", | ||||
|         "//vendor/k8s.io/sample-controller/pkg/apis/samplecontroller/v1alpha1:go_default_library", | ||||
|         "//vendor/k8s.io/sample-controller/pkg/client/clientset/versioned:go_default_library", | ||||
|         "//vendor/k8s.io/sample-controller/pkg/client/informers/externalversions/internalinterfaces:go_default_library", | ||||
|         "//vendor/k8s.io/sample-controller/pkg/client/informers/externalversions/samplecontroller: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/sample-controller/pkg/client/informers/externalversions/internalinterfaces:all-srcs", | ||||
|         "//staging/src/k8s.io/sample-controller/pkg/client/informers/externalversions/samplecontroller:all-srcs", | ||||
|     ], | ||||
|     tags = ["automanaged"], | ||||
|     visibility = ["//visibility:public"], | ||||
| ) | ||||
| @@ -0,0 +1,118 @@ | ||||
| /* | ||||
| 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. | ||||
| */ | ||||
|  | ||||
| // This file was automatically generated by informer-gen | ||||
|  | ||||
| package externalversions | ||||
|  | ||||
| import ( | ||||
| 	runtime "k8s.io/apimachinery/pkg/runtime" | ||||
| 	schema "k8s.io/apimachinery/pkg/runtime/schema" | ||||
| 	cache "k8s.io/client-go/tools/cache" | ||||
| 	versioned "k8s.io/sample-controller/pkg/client/clientset/versioned" | ||||
| 	internalinterfaces "k8s.io/sample-controller/pkg/client/informers/externalversions/internalinterfaces" | ||||
| 	samplecontroller "k8s.io/sample-controller/pkg/client/informers/externalversions/samplecontroller" | ||||
| 	reflect "reflect" | ||||
| 	sync "sync" | ||||
| 	time "time" | ||||
| ) | ||||
|  | ||||
| type sharedInformerFactory struct { | ||||
| 	client        versioned.Interface | ||||
| 	lock          sync.Mutex | ||||
| 	defaultResync time.Duration | ||||
|  | ||||
| 	informers map[reflect.Type]cache.SharedIndexInformer | ||||
| 	// startedInformers is used for tracking which informers have been started. | ||||
| 	// This allows Start() to be called multiple times safely. | ||||
| 	startedInformers map[reflect.Type]bool | ||||
| } | ||||
|  | ||||
| // NewSharedInformerFactory constructs a new instance of sharedInformerFactory | ||||
| func NewSharedInformerFactory(client versioned.Interface, defaultResync time.Duration) SharedInformerFactory { | ||||
| 	return &sharedInformerFactory{ | ||||
| 		client:           client, | ||||
| 		defaultResync:    defaultResync, | ||||
| 		informers:        make(map[reflect.Type]cache.SharedIndexInformer), | ||||
| 		startedInformers: make(map[reflect.Type]bool), | ||||
| 	} | ||||
| } | ||||
|  | ||||
| // Start initializes all requested informers. | ||||
| func (f *sharedInformerFactory) Start(stopCh <-chan struct{}) { | ||||
| 	f.lock.Lock() | ||||
| 	defer f.lock.Unlock() | ||||
|  | ||||
| 	for informerType, informer := range f.informers { | ||||
| 		if !f.startedInformers[informerType] { | ||||
| 			go informer.Run(stopCh) | ||||
| 			f.startedInformers[informerType] = true | ||||
| 		} | ||||
| 	} | ||||
| } | ||||
|  | ||||
| // WaitForCacheSync waits for all started informers' cache were synced. | ||||
| func (f *sharedInformerFactory) WaitForCacheSync(stopCh <-chan struct{}) map[reflect.Type]bool { | ||||
| 	informers := func() map[reflect.Type]cache.SharedIndexInformer { | ||||
| 		f.lock.Lock() | ||||
| 		defer f.lock.Unlock() | ||||
|  | ||||
| 		informers := map[reflect.Type]cache.SharedIndexInformer{} | ||||
| 		for informerType, informer := range f.informers { | ||||
| 			if f.startedInformers[informerType] { | ||||
| 				informers[informerType] = informer | ||||
| 			} | ||||
| 		} | ||||
| 		return informers | ||||
| 	}() | ||||
|  | ||||
| 	res := map[reflect.Type]bool{} | ||||
| 	for informType, informer := range informers { | ||||
| 		res[informType] = cache.WaitForCacheSync(stopCh, informer.HasSynced) | ||||
| 	} | ||||
| 	return res | ||||
| } | ||||
|  | ||||
| // InternalInformerFor returns the SharedIndexInformer for obj using an internal | ||||
| // client. | ||||
| func (f *sharedInformerFactory) InformerFor(obj runtime.Object, newFunc internalinterfaces.NewInformerFunc) cache.SharedIndexInformer { | ||||
| 	f.lock.Lock() | ||||
| 	defer f.lock.Unlock() | ||||
|  | ||||
| 	informerType := reflect.TypeOf(obj) | ||||
| 	informer, exists := f.informers[informerType] | ||||
| 	if exists { | ||||
| 		return informer | ||||
| 	} | ||||
| 	informer = newFunc(f.client, f.defaultResync) | ||||
| 	f.informers[informerType] = informer | ||||
|  | ||||
| 	return informer | ||||
| } | ||||
|  | ||||
| // SharedInformerFactory provides shared informers for resources in all known | ||||
| // API group versions. | ||||
| type SharedInformerFactory interface { | ||||
| 	internalinterfaces.SharedInformerFactory | ||||
| 	ForResource(resource schema.GroupVersionResource) (GenericInformer, error) | ||||
| 	WaitForCacheSync(stopCh <-chan struct{}) map[reflect.Type]bool | ||||
|  | ||||
| 	Samplecontroller() samplecontroller.Interface | ||||
| } | ||||
|  | ||||
| func (f *sharedInformerFactory) Samplecontroller() samplecontroller.Interface { | ||||
| 	return samplecontroller.New(f) | ||||
| } | ||||
| @@ -0,0 +1,61 @@ | ||||
| /* | ||||
| 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. | ||||
| */ | ||||
|  | ||||
| // This file was automatically generated by informer-gen | ||||
|  | ||||
| package externalversions | ||||
|  | ||||
| import ( | ||||
| 	"fmt" | ||||
| 	schema "k8s.io/apimachinery/pkg/runtime/schema" | ||||
| 	cache "k8s.io/client-go/tools/cache" | ||||
| 	v1alpha1 "k8s.io/sample-controller/pkg/apis/samplecontroller/v1alpha1" | ||||
| ) | ||||
|  | ||||
| // GenericInformer is type of SharedIndexInformer which will locate and delegate to other | ||||
| // sharedInformers based on type | ||||
| type GenericInformer interface { | ||||
| 	Informer() cache.SharedIndexInformer | ||||
| 	Lister() cache.GenericLister | ||||
| } | ||||
|  | ||||
| type genericInformer struct { | ||||
| 	informer cache.SharedIndexInformer | ||||
| 	resource schema.GroupResource | ||||
| } | ||||
|  | ||||
| // Informer returns the SharedIndexInformer. | ||||
| func (f *genericInformer) Informer() cache.SharedIndexInformer { | ||||
| 	return f.informer | ||||
| } | ||||
|  | ||||
| // Lister returns the GenericLister. | ||||
| func (f *genericInformer) Lister() cache.GenericLister { | ||||
| 	return cache.NewGenericLister(f.Informer().GetIndexer(), f.resource) | ||||
| } | ||||
|  | ||||
| // ForResource gives generic access to a shared informer of the matching type | ||||
| // TODO extend this to unknown resources with a client pool | ||||
| func (f *sharedInformerFactory) ForResource(resource schema.GroupVersionResource) (GenericInformer, error) { | ||||
| 	switch resource { | ||||
| 	// Group=Samplecontroller, Version=V1alpha1 | ||||
| 	case v1alpha1.SchemeGroupVersion.WithResource("foos"): | ||||
| 		return &genericInformer{resource: resource.GroupResource(), informer: f.Samplecontroller().V1alpha1().Foos().Informer()}, nil | ||||
|  | ||||
| 	} | ||||
|  | ||||
| 	return nil, fmt.Errorf("no informer found for %v", resource) | ||||
| } | ||||
| @@ -0,0 +1,27 @@ | ||||
| load("@io_bazel_rules_go//go:def.bzl", "go_library") | ||||
|  | ||||
| go_library( | ||||
|     name = "go_default_library", | ||||
|     srcs = ["factory_interfaces.go"], | ||||
|     importpath = "k8s.io/sample-controller/pkg/client/informers/externalversions/internalinterfaces", | ||||
|     visibility = ["//visibility:public"], | ||||
|     deps = [ | ||||
|         "//vendor/k8s.io/apimachinery/pkg/runtime:go_default_library", | ||||
|         "//vendor/k8s.io/client-go/tools/cache:go_default_library", | ||||
|         "//vendor/k8s.io/sample-controller/pkg/client/clientset/versioned:go_default_library", | ||||
|     ], | ||||
| ) | ||||
|  | ||||
| filegroup( | ||||
|     name = "package-srcs", | ||||
|     srcs = glob(["**"]), | ||||
|     tags = ["automanaged"], | ||||
|     visibility = ["//visibility:private"], | ||||
| ) | ||||
|  | ||||
| filegroup( | ||||
|     name = "all-srcs", | ||||
|     srcs = [":package-srcs"], | ||||
|     tags = ["automanaged"], | ||||
|     visibility = ["//visibility:public"], | ||||
| ) | ||||
| @@ -0,0 +1,34 @@ | ||||
| /* | ||||
| 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. | ||||
| */ | ||||
|  | ||||
| // This file was automatically generated by informer-gen | ||||
|  | ||||
| package internalinterfaces | ||||
|  | ||||
| import ( | ||||
| 	runtime "k8s.io/apimachinery/pkg/runtime" | ||||
| 	cache "k8s.io/client-go/tools/cache" | ||||
| 	versioned "k8s.io/sample-controller/pkg/client/clientset/versioned" | ||||
| 	time "time" | ||||
| ) | ||||
|  | ||||
| type NewInformerFunc func(versioned.Interface, time.Duration) cache.SharedIndexInformer | ||||
|  | ||||
| // SharedInformerFactory a small interface to allow for adding an informer without an import cycle | ||||
| type SharedInformerFactory interface { | ||||
| 	Start(stopCh <-chan struct{}) | ||||
| 	InformerFor(obj runtime.Object, newFunc NewInformerFunc) cache.SharedIndexInformer | ||||
| } | ||||
| @@ -0,0 +1,29 @@ | ||||
| load("@io_bazel_rules_go//go:def.bzl", "go_library") | ||||
|  | ||||
| go_library( | ||||
|     name = "go_default_library", | ||||
|     srcs = ["interface.go"], | ||||
|     importpath = "k8s.io/sample-controller/pkg/client/informers/externalversions/samplecontroller", | ||||
|     visibility = ["//visibility:public"], | ||||
|     deps = [ | ||||
|         "//vendor/k8s.io/sample-controller/pkg/client/informers/externalversions/internalinterfaces:go_default_library", | ||||
|         "//vendor/k8s.io/sample-controller/pkg/client/informers/externalversions/samplecontroller/v1alpha1: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/sample-controller/pkg/client/informers/externalversions/samplecontroller/v1alpha1:all-srcs", | ||||
|     ], | ||||
|     tags = ["automanaged"], | ||||
|     visibility = ["//visibility:public"], | ||||
| ) | ||||
| @@ -0,0 +1,44 @@ | ||||
| /* | ||||
| 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. | ||||
| */ | ||||
|  | ||||
| // This file was automatically generated by informer-gen | ||||
|  | ||||
| package samplecontroller | ||||
|  | ||||
| import ( | ||||
| 	internalinterfaces "k8s.io/sample-controller/pkg/client/informers/externalversions/internalinterfaces" | ||||
| 	v1alpha1 "k8s.io/sample-controller/pkg/client/informers/externalversions/samplecontroller/v1alpha1" | ||||
| ) | ||||
|  | ||||
| // Interface provides access to each of this group's versions. | ||||
| type Interface interface { | ||||
| 	// V1alpha1 provides access to shared informers for resources in V1alpha1. | ||||
| 	V1alpha1() v1alpha1.Interface | ||||
| } | ||||
|  | ||||
| type group struct { | ||||
| 	internalinterfaces.SharedInformerFactory | ||||
| } | ||||
|  | ||||
| // New returns a new Interface. | ||||
| func New(f internalinterfaces.SharedInformerFactory) Interface { | ||||
| 	return &group{f} | ||||
| } | ||||
|  | ||||
| // V1alpha1 returns a new v1alpha1.Interface. | ||||
| func (g *group) V1alpha1() v1alpha1.Interface { | ||||
| 	return v1alpha1.New(g.SharedInformerFactory) | ||||
| } | ||||
| @@ -0,0 +1,35 @@ | ||||
| load("@io_bazel_rules_go//go:def.bzl", "go_library") | ||||
|  | ||||
| go_library( | ||||
|     name = "go_default_library", | ||||
|     srcs = [ | ||||
|         "foo.go", | ||||
|         "interface.go", | ||||
|     ], | ||||
|     importpath = "k8s.io/sample-controller/pkg/client/informers/externalversions/samplecontroller/v1alpha1", | ||||
|     visibility = ["//visibility:public"], | ||||
|     deps = [ | ||||
|         "//vendor/k8s.io/apimachinery/pkg/apis/meta/v1:go_default_library", | ||||
|         "//vendor/k8s.io/apimachinery/pkg/runtime:go_default_library", | ||||
|         "//vendor/k8s.io/apimachinery/pkg/watch:go_default_library", | ||||
|         "//vendor/k8s.io/client-go/tools/cache:go_default_library", | ||||
|         "//vendor/k8s.io/sample-controller/pkg/apis/samplecontroller/v1alpha1:go_default_library", | ||||
|         "//vendor/k8s.io/sample-controller/pkg/client/clientset/versioned:go_default_library", | ||||
|         "//vendor/k8s.io/sample-controller/pkg/client/informers/externalversions/internalinterfaces:go_default_library", | ||||
|         "//vendor/k8s.io/sample-controller/pkg/client/listers/samplecontroller/v1alpha1:go_default_library", | ||||
|     ], | ||||
| ) | ||||
|  | ||||
| filegroup( | ||||
|     name = "package-srcs", | ||||
|     srcs = glob(["**"]), | ||||
|     tags = ["automanaged"], | ||||
|     visibility = ["//visibility:private"], | ||||
| ) | ||||
|  | ||||
| filegroup( | ||||
|     name = "all-srcs", | ||||
|     srcs = [":package-srcs"], | ||||
|     tags = ["automanaged"], | ||||
|     visibility = ["//visibility:public"], | ||||
| ) | ||||
| @@ -0,0 +1,73 @@ | ||||
| /* | ||||
| 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. | ||||
| */ | ||||
|  | ||||
| // This file was automatically generated by informer-gen | ||||
|  | ||||
| package v1alpha1 | ||||
|  | ||||
| import ( | ||||
| 	v1 "k8s.io/apimachinery/pkg/apis/meta/v1" | ||||
| 	runtime "k8s.io/apimachinery/pkg/runtime" | ||||
| 	watch "k8s.io/apimachinery/pkg/watch" | ||||
| 	cache "k8s.io/client-go/tools/cache" | ||||
| 	samplecontroller_v1alpha1 "k8s.io/sample-controller/pkg/apis/samplecontroller/v1alpha1" | ||||
| 	versioned "k8s.io/sample-controller/pkg/client/clientset/versioned" | ||||
| 	internalinterfaces "k8s.io/sample-controller/pkg/client/informers/externalversions/internalinterfaces" | ||||
| 	v1alpha1 "k8s.io/sample-controller/pkg/client/listers/samplecontroller/v1alpha1" | ||||
| 	time "time" | ||||
| ) | ||||
|  | ||||
| // FooInformer provides access to a shared informer and lister for | ||||
| // Foos. | ||||
| type FooInformer interface { | ||||
| 	Informer() cache.SharedIndexInformer | ||||
| 	Lister() v1alpha1.FooLister | ||||
| } | ||||
|  | ||||
| type fooInformer struct { | ||||
| 	factory internalinterfaces.SharedInformerFactory | ||||
| } | ||||
|  | ||||
| // NewFooInformer constructs a new informer for Foo type. | ||||
| // Always prefer using an informer factory to get a shared informer instead of getting an independent | ||||
| // one. This reduces memory footprint and number of connections to the server. | ||||
| func NewFooInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, indexers cache.Indexers) cache.SharedIndexInformer { | ||||
| 	return cache.NewSharedIndexInformer( | ||||
| 		&cache.ListWatch{ | ||||
| 			ListFunc: func(options v1.ListOptions) (runtime.Object, error) { | ||||
| 				return client.SamplecontrollerV1alpha1().Foos(namespace).List(options) | ||||
| 			}, | ||||
| 			WatchFunc: func(options v1.ListOptions) (watch.Interface, error) { | ||||
| 				return client.SamplecontrollerV1alpha1().Foos(namespace).Watch(options) | ||||
| 			}, | ||||
| 		}, | ||||
| 		&samplecontroller_v1alpha1.Foo{}, | ||||
| 		resyncPeriod, | ||||
| 		indexers, | ||||
| 	) | ||||
| } | ||||
|  | ||||
| func defaultFooInformer(client versioned.Interface, resyncPeriod time.Duration) cache.SharedIndexInformer { | ||||
| 	return NewFooInformer(client, v1.NamespaceAll, resyncPeriod, cache.Indexers{cache.NamespaceIndex: cache.MetaNamespaceIndexFunc}) | ||||
| } | ||||
|  | ||||
| func (f *fooInformer) Informer() cache.SharedIndexInformer { | ||||
| 	return f.factory.InformerFor(&samplecontroller_v1alpha1.Foo{}, defaultFooInformer) | ||||
| } | ||||
|  | ||||
| func (f *fooInformer) Lister() v1alpha1.FooLister { | ||||
| 	return v1alpha1.NewFooLister(f.Informer().GetIndexer()) | ||||
| } | ||||
| @@ -0,0 +1,43 @@ | ||||
| /* | ||||
| 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. | ||||
| */ | ||||
|  | ||||
| // This file was automatically generated by informer-gen | ||||
|  | ||||
| package v1alpha1 | ||||
|  | ||||
| import ( | ||||
| 	internalinterfaces "k8s.io/sample-controller/pkg/client/informers/externalversions/internalinterfaces" | ||||
| ) | ||||
|  | ||||
| // Interface provides access to all the informers in this group version. | ||||
| type Interface interface { | ||||
| 	// Foos returns a FooInformer. | ||||
| 	Foos() FooInformer | ||||
| } | ||||
|  | ||||
| type version struct { | ||||
| 	internalinterfaces.SharedInformerFactory | ||||
| } | ||||
|  | ||||
| // New returns a new Interface. | ||||
| func New(f internalinterfaces.SharedInformerFactory) Interface { | ||||
| 	return &version{f} | ||||
| } | ||||
|  | ||||
| // Foos returns a FooInformer. | ||||
| func (v *version) Foos() FooInformer { | ||||
| 	return &fooInformer{factory: v.SharedInformerFactory} | ||||
| } | ||||
| @@ -0,0 +1,31 @@ | ||||
| load("@io_bazel_rules_go//go:def.bzl", "go_library") | ||||
|  | ||||
| go_library( | ||||
|     name = "go_default_library", | ||||
|     srcs = [ | ||||
|         "expansion_generated.go", | ||||
|         "foo.go", | ||||
|     ], | ||||
|     importpath = "k8s.io/sample-controller/pkg/client/listers/samplecontroller/v1alpha1", | ||||
|     visibility = ["//visibility:public"], | ||||
|     deps = [ | ||||
|         "//vendor/k8s.io/apimachinery/pkg/api/errors:go_default_library", | ||||
|         "//vendor/k8s.io/apimachinery/pkg/labels:go_default_library", | ||||
|         "//vendor/k8s.io/client-go/tools/cache:go_default_library", | ||||
|         "//vendor/k8s.io/sample-controller/pkg/apis/samplecontroller/v1alpha1:go_default_library", | ||||
|     ], | ||||
| ) | ||||
|  | ||||
| filegroup( | ||||
|     name = "package-srcs", | ||||
|     srcs = glob(["**"]), | ||||
|     tags = ["automanaged"], | ||||
|     visibility = ["//visibility:private"], | ||||
| ) | ||||
|  | ||||
| filegroup( | ||||
|     name = "all-srcs", | ||||
|     srcs = [":package-srcs"], | ||||
|     tags = ["automanaged"], | ||||
|     visibility = ["//visibility:public"], | ||||
| ) | ||||
| @@ -0,0 +1,27 @@ | ||||
| /* | ||||
| 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. | ||||
| */ | ||||
|  | ||||
| // This file was automatically generated by lister-gen | ||||
|  | ||||
| package v1alpha1 | ||||
|  | ||||
| // FooListerExpansion allows custom methods to be added to | ||||
| // FooLister. | ||||
| type FooListerExpansion interface{} | ||||
|  | ||||
| // FooNamespaceListerExpansion allows custom methods to be added to | ||||
| // FooNamespaceLister. | ||||
| type FooNamespaceListerExpansion interface{} | ||||
| @@ -0,0 +1,94 @@ | ||||
| /* | ||||
| 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. | ||||
| */ | ||||
|  | ||||
| // This file was automatically generated by lister-gen | ||||
|  | ||||
| package v1alpha1 | ||||
|  | ||||
| import ( | ||||
| 	"k8s.io/apimachinery/pkg/api/errors" | ||||
| 	"k8s.io/apimachinery/pkg/labels" | ||||
| 	"k8s.io/client-go/tools/cache" | ||||
| 	v1alpha1 "k8s.io/sample-controller/pkg/apis/samplecontroller/v1alpha1" | ||||
| ) | ||||
|  | ||||
| // FooLister helps list Foos. | ||||
| type FooLister interface { | ||||
| 	// List lists all Foos in the indexer. | ||||
| 	List(selector labels.Selector) (ret []*v1alpha1.Foo, err error) | ||||
| 	// Foos returns an object that can list and get Foos. | ||||
| 	Foos(namespace string) FooNamespaceLister | ||||
| 	FooListerExpansion | ||||
| } | ||||
|  | ||||
| // fooLister implements the FooLister interface. | ||||
| type fooLister struct { | ||||
| 	indexer cache.Indexer | ||||
| } | ||||
|  | ||||
| // NewFooLister returns a new FooLister. | ||||
| func NewFooLister(indexer cache.Indexer) FooLister { | ||||
| 	return &fooLister{indexer: indexer} | ||||
| } | ||||
|  | ||||
| // List lists all Foos in the indexer. | ||||
| func (s *fooLister) List(selector labels.Selector) (ret []*v1alpha1.Foo, err error) { | ||||
| 	err = cache.ListAll(s.indexer, selector, func(m interface{}) { | ||||
| 		ret = append(ret, m.(*v1alpha1.Foo)) | ||||
| 	}) | ||||
| 	return ret, err | ||||
| } | ||||
|  | ||||
| // Foos returns an object that can list and get Foos. | ||||
| func (s *fooLister) Foos(namespace string) FooNamespaceLister { | ||||
| 	return fooNamespaceLister{indexer: s.indexer, namespace: namespace} | ||||
| } | ||||
|  | ||||
| // FooNamespaceLister helps list and get Foos. | ||||
| type FooNamespaceLister interface { | ||||
| 	// List lists all Foos in the indexer for a given namespace. | ||||
| 	List(selector labels.Selector) (ret []*v1alpha1.Foo, err error) | ||||
| 	// Get retrieves the Foo from the indexer for a given namespace and name. | ||||
| 	Get(name string) (*v1alpha1.Foo, error) | ||||
| 	FooNamespaceListerExpansion | ||||
| } | ||||
|  | ||||
| // fooNamespaceLister implements the FooNamespaceLister | ||||
| // interface. | ||||
| type fooNamespaceLister struct { | ||||
| 	indexer   cache.Indexer | ||||
| 	namespace string | ||||
| } | ||||
|  | ||||
| // List lists all Foos in the indexer for a given namespace. | ||||
| func (s fooNamespaceLister) List(selector labels.Selector) (ret []*v1alpha1.Foo, err error) { | ||||
| 	err = cache.ListAllByNamespace(s.indexer, s.namespace, selector, func(m interface{}) { | ||||
| 		ret = append(ret, m.(*v1alpha1.Foo)) | ||||
| 	}) | ||||
| 	return ret, err | ||||
| } | ||||
|  | ||||
| // Get retrieves the Foo from the indexer for a given namespace and name. | ||||
| func (s fooNamespaceLister) Get(name string) (*v1alpha1.Foo, error) { | ||||
| 	obj, exists, err := s.indexer.GetByKey(s.namespace + "/" + name) | ||||
| 	if err != nil { | ||||
| 		return nil, err | ||||
| 	} | ||||
| 	if !exists { | ||||
| 		return nil, errors.NewNotFound(v1alpha1.Resource("foo"), name) | ||||
| 	} | ||||
| 	return obj.(*v1alpha1.Foo), nil | ||||
| } | ||||
							
								
								
									
										30
									
								
								staging/src/k8s.io/sample-controller/pkg/signals/BUILD
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										30
									
								
								staging/src/k8s.io/sample-controller/pkg/signals/BUILD
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,30 @@ | ||||
| load("@io_bazel_rules_go//go:def.bzl", "go_library") | ||||
|  | ||||
| go_library( | ||||
|     name = "go_default_library", | ||||
|     srcs = [ | ||||
|         "signal.go", | ||||
|         "signal_posix.go", | ||||
|     ] + select({ | ||||
|         "@io_bazel_rules_go//go/platform:windows_amd64": [ | ||||
|             "signal_windows.go", | ||||
|         ], | ||||
|         "//conditions:default": [], | ||||
|     }), | ||||
|     importpath = "k8s.io/sample-controller/pkg/signals", | ||||
|     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"], | ||||
| ) | ||||
							
								
								
									
										43
									
								
								staging/src/k8s.io/sample-controller/pkg/signals/signal.go
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										43
									
								
								staging/src/k8s.io/sample-controller/pkg/signals/signal.go
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,43 @@ | ||||
| /* | ||||
| 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 signals | ||||
|  | ||||
| import ( | ||||
| 	"os" | ||||
| 	"os/signal" | ||||
| ) | ||||
|  | ||||
| var onlyOneSignalHandler = make(chan struct{}) | ||||
|  | ||||
| // SetupSignalHandler registered for SIGTERM and SIGINT. A stop channel is returned | ||||
| // which is closed on one of these signals. If a second signal is caught, the program | ||||
| // is terminated with exit code 1. | ||||
| func SetupSignalHandler() (stopCh <-chan struct{}) { | ||||
| 	close(onlyOneSignalHandler) // panics when called twice | ||||
|  | ||||
| 	stop := make(chan struct{}) | ||||
| 	c := make(chan os.Signal, 2) | ||||
| 	signal.Notify(c, shutdownSignals...) | ||||
| 	go func() { | ||||
| 		<-c | ||||
| 		close(stop) | ||||
| 		<-c | ||||
| 		os.Exit(1) // second signal. Exit directly. | ||||
| 	}() | ||||
|  | ||||
| 	return stop | ||||
| } | ||||
| @@ -0,0 +1,26 @@ | ||||
| // +build !windows | ||||
|  | ||||
| /* | ||||
| 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 signals | ||||
|  | ||||
| import ( | ||||
| 	"os" | ||||
| 	"syscall" | ||||
| ) | ||||
|  | ||||
| var shutdownSignals = []os.Signal{os.Interrupt, syscall.SIGTERM} | ||||
| @@ -0,0 +1,23 @@ | ||||
| /* | ||||
| 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 signals | ||||
|  | ||||
| import ( | ||||
| 	"os" | ||||
| ) | ||||
|  | ||||
| var shutdownSignals = []os.Signal{os.Interrupt} | ||||
							
								
								
									
										1
									
								
								vendor/k8s.io/sample-controller
									
									
									
										generated
									
									
										vendored
									
									
										Symbolic link
									
								
							
							
						
						
									
										1
									
								
								vendor/k8s.io/sample-controller
									
									
									
										generated
									
									
										vendored
									
									
										Symbolic link
									
								
							| @@ -0,0 +1 @@ | ||||
| ../../staging/src/k8s.io/sample-controller | ||||
		Reference in New Issue
	
	Block a user
	 James Munnelly
					James Munnelly