├── .devcontainer ├── Dockerfile ├── devcontainer.json └── postCreateCommand.sh ├── .github └── workflows │ └── prebuilds.yaml ├── .gitignore ├── LICENSE └── README.md /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loft-sh/devpod-kubebuilder-template/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loft-sh/devpod-kubebuilder-template/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.devcontainer/postCreateCommand.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loft-sh/devpod-kubebuilder-template/HEAD/.devcontainer/postCreateCommand.sh -------------------------------------------------------------------------------- /.github/workflows/prebuilds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loft-sh/devpod-kubebuilder-template/HEAD/.github/workflows/prebuilds.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loft-sh/devpod-kubebuilder-template/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loft-sh/devpod-kubebuilder-template/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loft-sh/devpod-kubebuilder-template/HEAD/README.md --------------------------------------------------------------------------------