├── LICENSE ├── Makefile ├── README.md ├── controller.go ├── go.mod ├── go.sum ├── hack └── boilerplate.go.txt ├── main.go ├── manifests ├── crd.yaml └── example-foo.yaml └── pkg ├── apis └── samplecontroller.k8s.io │ └── v1alpha1 │ └── types.go └── codegen ├── cleanup └── main.go └── main.go /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/wrangler-sample/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/wrangler-sample/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/wrangler-sample/HEAD/README.md -------------------------------------------------------------------------------- /controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/wrangler-sample/HEAD/controller.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/wrangler-sample/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/wrangler-sample/HEAD/go.sum -------------------------------------------------------------------------------- /hack/boilerplate.go.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/wrangler-sample/HEAD/hack/boilerplate.go.txt -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/wrangler-sample/HEAD/main.go -------------------------------------------------------------------------------- /manifests/crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/wrangler-sample/HEAD/manifests/crd.yaml -------------------------------------------------------------------------------- /manifests/example-foo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/wrangler-sample/HEAD/manifests/example-foo.yaml -------------------------------------------------------------------------------- /pkg/apis/samplecontroller.k8s.io/v1alpha1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/wrangler-sample/HEAD/pkg/apis/samplecontroller.k8s.io/v1alpha1/types.go -------------------------------------------------------------------------------- /pkg/codegen/cleanup/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/wrangler-sample/HEAD/pkg/codegen/cleanup/main.go -------------------------------------------------------------------------------- /pkg/codegen/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/wrangler-sample/HEAD/pkg/codegen/main.go --------------------------------------------------------------------------------