From 0526ec6626854dbf16cb156fb060744422529f77 Mon Sep 17 00:00:00 2001 From: danielsinai Date: Sun, 5 May 2024 20:40:50 +0300 Subject: [PATCH] fix: links to docs --- pkg/crd/crd.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/crd/crd.go b/pkg/crd/crd.go index 05a6c5b..ccae2eb 100644 --- a/pkg/crd/crd.go +++ b/pkg/crd/crd.go @@ -73,7 +73,7 @@ func isCRDNamespacedScoped(crd v1.CustomResourceDefinition) bool { } func getDescriptionFromCRD(crd v1.CustomResourceDefinition) string { - return fmt.Sprintf("This action was automatically generated from a Custom Resource Definition (CRD) in the cluster. It allows you to create, update, and delete %s resources. To complete the setup, follow [this guide](/guides-and-tutorials/let-developers-consume-k8s-api-extensions)", crd.Spec.Names.Singular) + return fmt.Sprintf("This action was automatically generated from a Custom Resource Definition (CRD) in the cluster. It allows you to create, update, and delete %s resources. To complete the setup, follow [this guide](https://docs.getport.io/guides-and-tutorials/let-developers-consume-k8s-api-extensions)", crd.Spec.Names.Singular) } func getIconFromCRD(crd v1.CustomResourceDefinition) string { if len(crd.ObjectMeta.OwnerReferences) > 0 && crd.ObjectMeta.OwnerReferences[0].Kind == "CompositeResourceDefinition" {