From 656db577df91fe545855e1ca6e0d9607415c5961 Mon Sep 17 00:00:00 2001 From: Christian Bruckmayer Date: Wed, 9 Aug 2023 10:56:54 +0100 Subject: [PATCH] Update quickstart guide to use create instead of apply Otherwise kubectl complains about ``` metadata.annotations: Too long: must have at most 262144 bytes ``` Close https://github.com/actions/actions-runner-controller/issues/2565 --- docs/quickstart.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/quickstart.md b/docs/quickstart.md index 55f80487..31a1059d 100644 --- a/docs/quickstart.md +++ b/docs/quickstart.md @@ -73,7 +73,7 @@ helm upgrade --install --namespace actions-runner-system --create-namespace\ ##### Deploy ARC ```shell -kubectl apply -f \ +kubectl create -f \ https://github.com/actions/actions-runner-controller/\ releases/download/v0.22.0/actions-runner-controller.yaml ``` @@ -89,7 +89,7 @@ kubectl create secret generic controller-manager \ ```` *note:- Replace REPLACE_YOUR_TOKEN_HERE with your PAT that was generated previously. - + 2️⃣ Create the GitHub self hosted runners and configure to run against your repository.