From dada9a4f2ef0a466dcc58e8ac91c1ca3c6f489e4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gon=C3=A7alo=20Montalv=C3=A3o=20Marques?= <9379664+gonmmarques@users.noreply.github.com> Date: Tue, 10 Sep 2024 08:15:32 +0100 Subject: [PATCH] docs: Update go tutorial --- website/content/en/docs/building-operators/golang/tutorial.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/website/content/en/docs/building-operators/golang/tutorial.md b/website/content/en/docs/building-operators/golang/tutorial.md index 8f26ed9fe4c..9fddccfe011 100644 --- a/website/content/en/docs/building-operators/golang/tutorial.md +++ b/website/content/en/docs/building-operators/golang/tutorial.md @@ -44,8 +44,8 @@ internally to version your Kubernetes resources and are thus used for many thing name your domain to group your resource types in meaningful group(s) for ease of understanding and because these groups determine how access can be controlled to your resource types using RBAC. For more information, see [the core Kubernetes docs](https://kubernetes.io/docs/reference/using-api/#api-groups) and [the Kubebuilder docs](https://book.kubebuilder.io/cronjob-tutorial/gvks.html). -**Note** If your local environment is Apple Silicon (`darwin/arm64`) use the `go/v4-alpha` -plugin which provides support for this platform by adding to the init subCommand the flag `--plugins=go/v4-alpha` +**Note** If your local environment is Apple Silicon (`darwin/arm64`) use the `go/v4` +plugin which provides support for this platform by adding to the init subCommand the flag `--plugins=go/v4` To learn about the project directory structure, see [Kubebuilder project layout][kubebuilder_layout_doc] doc.