├── LICENSE ├── README.md ├── api └── types │ └── v1alpha1 │ ├── project.go │ ├── register.go │ └── zz_generated.deepcopy.go ├── clientset └── v1alpha1 │ ├── api.go │ └── projects.go ├── go.mod ├── go.sum ├── informer.go ├── kubernetes ├── crd.yaml └── project.yaml └── main.go /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martin-helmich/kubernetes-crd-example/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martin-helmich/kubernetes-crd-example/HEAD/README.md -------------------------------------------------------------------------------- /api/types/v1alpha1/project.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martin-helmich/kubernetes-crd-example/HEAD/api/types/v1alpha1/project.go -------------------------------------------------------------------------------- /api/types/v1alpha1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martin-helmich/kubernetes-crd-example/HEAD/api/types/v1alpha1/register.go -------------------------------------------------------------------------------- /api/types/v1alpha1/zz_generated.deepcopy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martin-helmich/kubernetes-crd-example/HEAD/api/types/v1alpha1/zz_generated.deepcopy.go -------------------------------------------------------------------------------- /clientset/v1alpha1/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martin-helmich/kubernetes-crd-example/HEAD/clientset/v1alpha1/api.go -------------------------------------------------------------------------------- /clientset/v1alpha1/projects.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martin-helmich/kubernetes-crd-example/HEAD/clientset/v1alpha1/projects.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martin-helmich/kubernetes-crd-example/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martin-helmich/kubernetes-crd-example/HEAD/go.sum -------------------------------------------------------------------------------- /informer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martin-helmich/kubernetes-crd-example/HEAD/informer.go -------------------------------------------------------------------------------- /kubernetes/crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martin-helmich/kubernetes-crd-example/HEAD/kubernetes/crd.yaml -------------------------------------------------------------------------------- /kubernetes/project.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martin-helmich/kubernetes-crd-example/HEAD/kubernetes/project.yaml -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martin-helmich/kubernetes-crd-example/HEAD/main.go --------------------------------------------------------------------------------