From 0f01bd616f0d203303d1e361fd2c4c33b78547cf Mon Sep 17 00:00:00 2001 From: Alessandro Degano Date: Thu, 21 Nov 2024 15:05:15 +0100 Subject: [PATCH] Direct installation requires `--server-side=true` The command: ```bash kubectl apply -f https://github.com/shipwright-io/build/releases/latest/download/release.yaml ``` Will fail with the error: `The CustomResourceDefinition "buildruns.shipwright.io" is invalid: metadata.annotations: Too long: must have at most 262144 bytes` This commit updates the documentation to include the flag. Similar to shipwright-io/build#1315. Signed-off-by: Alessandro Degano --- content/en/docs/getting-started/installation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/docs/getting-started/installation.md b/content/en/docs/getting-started/installation.md index e459eb4e..4baa18d9 100644 --- a/content/en/docs/getting-started/installation.md +++ b/content/en/docs/getting-started/installation.md @@ -57,7 +57,7 @@ We also publish a Kubernetes manifest that installs Shipwright directly into the Applying this manifest requires cluster administrator permissions: ```bash -$ kubectl apply -f https://github.com/shipwright-io/build/releases/latest/download/release.yaml +$ kubectl apply -f https://github.com/shipwright-io/build/releases/latest/download/release.yaml --server-side=true ``` ## Installing Sample Build Strategies