diff --git a/bootstrap/crds/main.tf b/bootstrap/crds/main.tf index 0cac3eb..c345f38 100644 --- a/bootstrap/crds/main.tf +++ b/bootstrap/crds/main.tf @@ -8,7 +8,9 @@ resource "kubernetes_manifest" "customresourcedefinition_kupoports_demeter_run" "spec" = { "group" = "demeter.run" "names" = { - "categories" = [] + "categories" = [ + "demeter-port", + ] "kind" = "KupoPort" "plural" = "kupoports" "shortNames" = [ diff --git a/operator/src/controller.rs b/operator/src/controller.rs index 33ec337..910bdea 100644 --- a/operator/src/controller.rs +++ b/operator/src/controller.rs @@ -28,6 +28,7 @@ impl Context { group = "demeter.run", version = "v1alpha1", shortname = "kpts", + category = "demeter-port", namespaced )] #[kube(status = "KupoPortStatus")]