├── .DS_Store ├── .dockerignore ├── .github └── workflows │ ├── ci.yml │ ├── push-images.yml │ └── release.yml ├── .gitignore ├── .golangci.yml ├── LICENSE ├── Makefile ├── PROJECT ├── README.md ├── api └── v1alpha1 │ ├── groupversion_info.go │ ├── noderegistryconfigs_types.go │ ├── registryconfigs_types.go │ └── zz_generated.deepcopy.go ├── charts └── runtime-copilot │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── crds │ ├── registry.runtime.x-copilot.io_noderegistryconfigs.yaml │ └── registry.runtime.x-copilot.io_registryconfigs.yaml │ ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── daemon.yaml │ ├── deployment.yaml │ └── rbac │ │ ├── auth_proxy_client_clusterrole.yaml │ │ ├── auth_proxy_role.yaml │ │ ├── auth_proxy_role_binding.yaml │ │ ├── auth_proxy_service.yaml │ │ ├── leader_election_role.yaml │ │ ├── leader_election_role_binding.yaml │ │ ├── noderegistryconfigs_editor_role.yaml │ │ ├── noderegistryconfigs_viewer_role.yaml │ │ ├── registryconfigs_editor_role.yaml │ │ ├── registryconfigs_viewer_role.yaml │ │ ├── role.yaml │ │ ├── role_binding.yaml │ │ └── service_account.yaml │ └── values.yaml ├── cmd ├── copilot │ └── main.go └── daemon │ └── main.go ├── config ├── crd │ ├── bases │ │ ├── registry.runtime.x-copilot.io_noderegistryconfigs.yaml │ │ └── registry.runtime.x-copilot.io_registryconfigs.yaml │ ├── kustomization.yaml │ ├── kustomizeconfig.yaml │ └── patches │ │ ├── cainjection_in_noderegistryconfigs.yaml │ │ ├── cainjection_in_registryconfigs.yaml │ │ ├── webhook_in_noderegistryconfigs.yaml │ │ └── webhook_in_registryconfigs.yaml ├── default │ ├── kustomization.yaml │ ├── manager_auth_proxy_patch.yaml │ └── manager_config_patch.yaml ├── manager │ ├── daemon.yaml │ ├── kustomization.yaml │ └── manager.yaml ├── prometheus │ ├── kustomization.yaml │ └── monitor.yaml ├── rbac │ ├── auth_proxy_client_clusterrole.yaml │ ├── auth_proxy_role.yaml │ ├── auth_proxy_role_binding.yaml │ ├── auth_proxy_service.yaml │ ├── kustomization.yaml │ ├── leader_election_role.yaml │ ├── leader_election_role_binding.yaml │ ├── noderegistryconfigs_editor_role.yaml │ ├── noderegistryconfigs_viewer_role.yaml │ ├── registryconfigs_editor_role.yaml │ ├── registryconfigs_viewer_role.yaml │ ├── role.yaml │ ├── role_binding.yaml │ └── service_account.yaml └── samples │ ├── kustomization.yaml │ ├── registry.runtime_v1alpha1_registryconfigs.yaml │ └── registry.runtimme_v1alpha1_noderegistryconfigs.yaml ├── go.mod ├── go.sum ├── hack ├── .import-aliases ├── boilerplate.go.txt ├── helm-sync.sh ├── tools.go ├── tools │ ├── preferredimports │ │ └── preferredimports.go │ └── tools.go ├── util.sh ├── verify-crds.sh ├── verify-import-aliases.sh ├── verify-staticcheck.sh └── verify-vendor.sh └── internal ├── controller ├── noderegistryconfigs_controller.go └── registryconfigs_controller.go └── utils └── rand.go /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-io/runtime-copilot/HEAD/.DS_Store -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-io/runtime-copilot/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-io/runtime-copilot/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/push-images.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-io/runtime-copilot/HEAD/.github/workflows/push-images.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-io/runtime-copilot/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-io/runtime-copilot/HEAD/.gitignore -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-io/runtime-copilot/HEAD/.golangci.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-io/runtime-copilot/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-io/runtime-copilot/HEAD/Makefile -------------------------------------------------------------------------------- /PROJECT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-io/runtime-copilot/HEAD/PROJECT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-io/runtime-copilot/HEAD/README.md -------------------------------------------------------------------------------- /api/v1alpha1/groupversion_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-io/runtime-copilot/HEAD/api/v1alpha1/groupversion_info.go -------------------------------------------------------------------------------- /api/v1alpha1/noderegistryconfigs_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-io/runtime-copilot/HEAD/api/v1alpha1/noderegistryconfigs_types.go -------------------------------------------------------------------------------- /api/v1alpha1/registryconfigs_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-io/runtime-copilot/HEAD/api/v1alpha1/registryconfigs_types.go -------------------------------------------------------------------------------- /api/v1alpha1/zz_generated.deepcopy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-io/runtime-copilot/HEAD/api/v1alpha1/zz_generated.deepcopy.go -------------------------------------------------------------------------------- /charts/runtime-copilot/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-io/runtime-copilot/HEAD/charts/runtime-copilot/.helmignore -------------------------------------------------------------------------------- /charts/runtime-copilot/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-io/runtime-copilot/HEAD/charts/runtime-copilot/Chart.yaml -------------------------------------------------------------------------------- /charts/runtime-copilot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-io/runtime-copilot/HEAD/charts/runtime-copilot/README.md -------------------------------------------------------------------------------- /charts/runtime-copilot/crds/registry.runtime.x-copilot.io_noderegistryconfigs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-io/runtime-copilot/HEAD/charts/runtime-copilot/crds/registry.runtime.x-copilot.io_noderegistryconfigs.yaml -------------------------------------------------------------------------------- /charts/runtime-copilot/crds/registry.runtime.x-copilot.io_registryconfigs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-io/runtime-copilot/HEAD/charts/runtime-copilot/crds/registry.runtime.x-copilot.io_registryconfigs.yaml -------------------------------------------------------------------------------- /charts/runtime-copilot/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-io/runtime-copilot/HEAD/charts/runtime-copilot/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/runtime-copilot/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-io/runtime-copilot/HEAD/charts/runtime-copilot/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/runtime-copilot/templates/daemon.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-io/runtime-copilot/HEAD/charts/runtime-copilot/templates/daemon.yaml -------------------------------------------------------------------------------- /charts/runtime-copilot/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-io/runtime-copilot/HEAD/charts/runtime-copilot/templates/deployment.yaml -------------------------------------------------------------------------------- /charts/runtime-copilot/templates/rbac/auth_proxy_client_clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-io/runtime-copilot/HEAD/charts/runtime-copilot/templates/rbac/auth_proxy_client_clusterrole.yaml -------------------------------------------------------------------------------- /charts/runtime-copilot/templates/rbac/auth_proxy_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-io/runtime-copilot/HEAD/charts/runtime-copilot/templates/rbac/auth_proxy_role.yaml -------------------------------------------------------------------------------- /charts/runtime-copilot/templates/rbac/auth_proxy_role_binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-io/runtime-copilot/HEAD/charts/runtime-copilot/templates/rbac/auth_proxy_role_binding.yaml -------------------------------------------------------------------------------- /charts/runtime-copilot/templates/rbac/auth_proxy_service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-io/runtime-copilot/HEAD/charts/runtime-copilot/templates/rbac/auth_proxy_service.yaml -------------------------------------------------------------------------------- /charts/runtime-copilot/templates/rbac/leader_election_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-io/runtime-copilot/HEAD/charts/runtime-copilot/templates/rbac/leader_election_role.yaml -------------------------------------------------------------------------------- /charts/runtime-copilot/templates/rbac/leader_election_role_binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-io/runtime-copilot/HEAD/charts/runtime-copilot/templates/rbac/leader_election_role_binding.yaml -------------------------------------------------------------------------------- /charts/runtime-copilot/templates/rbac/noderegistryconfigs_editor_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-io/runtime-copilot/HEAD/charts/runtime-copilot/templates/rbac/noderegistryconfigs_editor_role.yaml -------------------------------------------------------------------------------- /charts/runtime-copilot/templates/rbac/noderegistryconfigs_viewer_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-io/runtime-copilot/HEAD/charts/runtime-copilot/templates/rbac/noderegistryconfigs_viewer_role.yaml -------------------------------------------------------------------------------- /charts/runtime-copilot/templates/rbac/registryconfigs_editor_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-io/runtime-copilot/HEAD/charts/runtime-copilot/templates/rbac/registryconfigs_editor_role.yaml -------------------------------------------------------------------------------- /charts/runtime-copilot/templates/rbac/registryconfigs_viewer_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-io/runtime-copilot/HEAD/charts/runtime-copilot/templates/rbac/registryconfigs_viewer_role.yaml -------------------------------------------------------------------------------- /charts/runtime-copilot/templates/rbac/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-io/runtime-copilot/HEAD/charts/runtime-copilot/templates/rbac/role.yaml -------------------------------------------------------------------------------- /charts/runtime-copilot/templates/rbac/role_binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-io/runtime-copilot/HEAD/charts/runtime-copilot/templates/rbac/role_binding.yaml -------------------------------------------------------------------------------- /charts/runtime-copilot/templates/rbac/service_account.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-io/runtime-copilot/HEAD/charts/runtime-copilot/templates/rbac/service_account.yaml -------------------------------------------------------------------------------- /charts/runtime-copilot/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-io/runtime-copilot/HEAD/charts/runtime-copilot/values.yaml -------------------------------------------------------------------------------- /cmd/copilot/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-io/runtime-copilot/HEAD/cmd/copilot/main.go -------------------------------------------------------------------------------- /cmd/daemon/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-io/runtime-copilot/HEAD/cmd/daemon/main.go -------------------------------------------------------------------------------- /config/crd/bases/registry.runtime.x-copilot.io_noderegistryconfigs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-io/runtime-copilot/HEAD/config/crd/bases/registry.runtime.x-copilot.io_noderegistryconfigs.yaml -------------------------------------------------------------------------------- /config/crd/bases/registry.runtime.x-copilot.io_registryconfigs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-io/runtime-copilot/HEAD/config/crd/bases/registry.runtime.x-copilot.io_registryconfigs.yaml -------------------------------------------------------------------------------- /config/crd/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-io/runtime-copilot/HEAD/config/crd/kustomization.yaml -------------------------------------------------------------------------------- /config/crd/kustomizeconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-io/runtime-copilot/HEAD/config/crd/kustomizeconfig.yaml -------------------------------------------------------------------------------- /config/crd/patches/cainjection_in_noderegistryconfigs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-io/runtime-copilot/HEAD/config/crd/patches/cainjection_in_noderegistryconfigs.yaml -------------------------------------------------------------------------------- /config/crd/patches/cainjection_in_registryconfigs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-io/runtime-copilot/HEAD/config/crd/patches/cainjection_in_registryconfigs.yaml -------------------------------------------------------------------------------- /config/crd/patches/webhook_in_noderegistryconfigs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-io/runtime-copilot/HEAD/config/crd/patches/webhook_in_noderegistryconfigs.yaml -------------------------------------------------------------------------------- /config/crd/patches/webhook_in_registryconfigs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-io/runtime-copilot/HEAD/config/crd/patches/webhook_in_registryconfigs.yaml -------------------------------------------------------------------------------- /config/default/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-io/runtime-copilot/HEAD/config/default/kustomization.yaml -------------------------------------------------------------------------------- /config/default/manager_auth_proxy_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-io/runtime-copilot/HEAD/config/default/manager_auth_proxy_patch.yaml -------------------------------------------------------------------------------- /config/default/manager_config_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-io/runtime-copilot/HEAD/config/default/manager_config_patch.yaml -------------------------------------------------------------------------------- /config/manager/daemon.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-io/runtime-copilot/HEAD/config/manager/daemon.yaml -------------------------------------------------------------------------------- /config/manager/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-io/runtime-copilot/HEAD/config/manager/kustomization.yaml -------------------------------------------------------------------------------- /config/manager/manager.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-io/runtime-copilot/HEAD/config/manager/manager.yaml -------------------------------------------------------------------------------- /config/prometheus/kustomization.yaml: -------------------------------------------------------------------------------- 1 | resources: 2 | - monitor.yaml 3 | -------------------------------------------------------------------------------- /config/prometheus/monitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-io/runtime-copilot/HEAD/config/prometheus/monitor.yaml -------------------------------------------------------------------------------- /config/rbac/auth_proxy_client_clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-io/runtime-copilot/HEAD/config/rbac/auth_proxy_client_clusterrole.yaml -------------------------------------------------------------------------------- /config/rbac/auth_proxy_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-io/runtime-copilot/HEAD/config/rbac/auth_proxy_role.yaml -------------------------------------------------------------------------------- /config/rbac/auth_proxy_role_binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-io/runtime-copilot/HEAD/config/rbac/auth_proxy_role_binding.yaml -------------------------------------------------------------------------------- /config/rbac/auth_proxy_service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-io/runtime-copilot/HEAD/config/rbac/auth_proxy_service.yaml -------------------------------------------------------------------------------- /config/rbac/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-io/runtime-copilot/HEAD/config/rbac/kustomization.yaml -------------------------------------------------------------------------------- /config/rbac/leader_election_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-io/runtime-copilot/HEAD/config/rbac/leader_election_role.yaml -------------------------------------------------------------------------------- /config/rbac/leader_election_role_binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-io/runtime-copilot/HEAD/config/rbac/leader_election_role_binding.yaml -------------------------------------------------------------------------------- /config/rbac/noderegistryconfigs_editor_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-io/runtime-copilot/HEAD/config/rbac/noderegistryconfigs_editor_role.yaml -------------------------------------------------------------------------------- /config/rbac/noderegistryconfigs_viewer_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-io/runtime-copilot/HEAD/config/rbac/noderegistryconfigs_viewer_role.yaml -------------------------------------------------------------------------------- /config/rbac/registryconfigs_editor_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-io/runtime-copilot/HEAD/config/rbac/registryconfigs_editor_role.yaml -------------------------------------------------------------------------------- /config/rbac/registryconfigs_viewer_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-io/runtime-copilot/HEAD/config/rbac/registryconfigs_viewer_role.yaml -------------------------------------------------------------------------------- /config/rbac/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-io/runtime-copilot/HEAD/config/rbac/role.yaml -------------------------------------------------------------------------------- /config/rbac/role_binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-io/runtime-copilot/HEAD/config/rbac/role_binding.yaml -------------------------------------------------------------------------------- /config/rbac/service_account.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-io/runtime-copilot/HEAD/config/rbac/service_account.yaml -------------------------------------------------------------------------------- /config/samples/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-io/runtime-copilot/HEAD/config/samples/kustomization.yaml -------------------------------------------------------------------------------- /config/samples/registry.runtime_v1alpha1_registryconfigs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-io/runtime-copilot/HEAD/config/samples/registry.runtime_v1alpha1_registryconfigs.yaml -------------------------------------------------------------------------------- /config/samples/registry.runtimme_v1alpha1_noderegistryconfigs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-io/runtime-copilot/HEAD/config/samples/registry.runtimme_v1alpha1_noderegistryconfigs.yaml -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-io/runtime-copilot/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-io/runtime-copilot/HEAD/go.sum -------------------------------------------------------------------------------- /hack/.import-aliases: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-io/runtime-copilot/HEAD/hack/.import-aliases -------------------------------------------------------------------------------- /hack/boilerplate.go.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-io/runtime-copilot/HEAD/hack/boilerplate.go.txt -------------------------------------------------------------------------------- /hack/helm-sync.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-io/runtime-copilot/HEAD/hack/helm-sync.sh -------------------------------------------------------------------------------- /hack/tools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-io/runtime-copilot/HEAD/hack/tools.go -------------------------------------------------------------------------------- /hack/tools/preferredimports/preferredimports.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-io/runtime-copilot/HEAD/hack/tools/preferredimports/preferredimports.go -------------------------------------------------------------------------------- /hack/tools/tools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-io/runtime-copilot/HEAD/hack/tools/tools.go -------------------------------------------------------------------------------- /hack/util.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-io/runtime-copilot/HEAD/hack/util.sh -------------------------------------------------------------------------------- /hack/verify-crds.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-io/runtime-copilot/HEAD/hack/verify-crds.sh -------------------------------------------------------------------------------- /hack/verify-import-aliases.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-io/runtime-copilot/HEAD/hack/verify-import-aliases.sh -------------------------------------------------------------------------------- /hack/verify-staticcheck.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-io/runtime-copilot/HEAD/hack/verify-staticcheck.sh -------------------------------------------------------------------------------- /hack/verify-vendor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-io/runtime-copilot/HEAD/hack/verify-vendor.sh -------------------------------------------------------------------------------- /internal/controller/noderegistryconfigs_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-io/runtime-copilot/HEAD/internal/controller/noderegistryconfigs_controller.go -------------------------------------------------------------------------------- /internal/controller/registryconfigs_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-io/runtime-copilot/HEAD/internal/controller/registryconfigs_controller.go -------------------------------------------------------------------------------- /internal/utils/rand.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-io/runtime-copilot/HEAD/internal/utils/rand.go --------------------------------------------------------------------------------