From df1bf86f47ad6396caa5c5d5e0d8748c2a74ec23 Mon Sep 17 00:00:00 2001 From: killianmuldoon Date: Mon, 22 May 2023 13:31:29 +0100 Subject: [PATCH] Fix outdated link to Kubernetes docs Signed-off-by: killianmuldoon --- .../developer/providers/implementers-guide/generate_crds.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/docs/book/src/developer/providers/implementers-guide/generate_crds.md b/docs/book/src/developer/providers/implementers-guide/generate_crds.md index 2dcd5a289692..fe4bfbc2b62c 100644 --- a/docs/book/src/developer/providers/implementers-guide/generate_crds.md +++ b/docs/book/src/developer/providers/implementers-guide/generate_crds.md @@ -53,8 +53,7 @@ The latest API version of Cluster API and the version of your provider do not ne ### Add Status subresource The [status subresource][status] lets Spec and Status requests for custom resources be addressed separately so requests don't conflict with each other. -It also lets you split RBAC rules between Spec and Status. -It's stable in Kubernetes as of [v1.16][rbac], but you will have to [manually enable it in Kubebuilder][kbstatus]. +It also lets you split RBAC rules between Spec and Status. You will have to [manually enable it in Kubebuilder][kbstatus]. Add the `subresource:status` annotation to your `cluster_types.go` `machine_types.go` @@ -80,7 +79,6 @@ make manifests ``` [status]: https://kubernetes.io/docs/tasks/access-kubernetes-api/custom-resources/custom-resource-definitions/#status-subresource -[rbac]: https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.22/#customresourcesubresources-v1beta1-apiextensions-k8s-io [kbstatus]: https://book.kubebuilder.io/reference/generating-crd.html?highlight=status#status ### Apply further customizations