diff --git a/TROUBLESHOOTING.md b/TROUBLESHOOTING.md index e87ccf46..3dde50db 100644 --- a/TROUBLESHOOTING.md +++ b/TROUBLESHOOTING.md @@ -67,7 +67,7 @@ To fix this, you may either: # With helm, you'd set `webhookPort` to the port number of your choice # See https://github.com/actions/actions-runner-controller/pull/1410/files for more information helm upgrade --install --namespace actions-runner-system --create-namespace \ - --wait actions-runner-controller actions/actions-runner-controller \ + --wait actions-runner-controller actions-runner-controller/actions-runner-controller \ --set webhookPort=10250 ``` diff --git a/docs/about-arc.md b/docs/about-arc.md index 532d29f0..01e7b077 100644 --- a/docs/about-arc.md +++ b/docs/about-arc.md @@ -44,7 +44,7 @@ The helm command (in the QuickStart guide) installs the custom resources into th ```console helm install -f custom-values.yaml --wait --namespace actions-runner-system \ --create-namespace actions-runner-controller \ - actions/actions-runner-controller + actions-runner-controller/actions-runner-controller ``` ### Runner deployment diff --git a/docs/authenticating-to-the-github-api.md b/docs/authenticating-to-the-github-api.md index 9a5930ec..80dcd301 100644 --- a/docs/authenticating-to-the-github-api.md +++ b/docs/authenticating-to-the-github-api.md @@ -160,7 +160,7 @@ Set the Helm chart values as follows: ```shell $ CA_BUNDLE=$(cat path/to/ca.pem | base64) -$ helm upgrade --install actions/actions-runner-controller \ +$ helm upgrade --install actions-runner-controller/actions-runner-controller \ certManagerEnabled=false \ admissionWebHooks.caBundle=${CA_BUNDLE} ``` @@ -170,7 +170,7 @@ $ helm upgrade --install actions/actions-runner-controller \ Set the Helm chart values as follows: ```shell -$ helm upgrade --install actions/actions-runner-controller \ +$ helm upgrade --install actions-runner-controller/actions-runner-controller \ certManagerEnabled=false ``` diff --git a/docs/automatically-scaling-runners.md b/docs/automatically-scaling-runners.md index 7c9c057a..747800da 100644 --- a/docs/automatically-scaling-runners.md +++ b/docs/automatically-scaling-runners.md @@ -260,7 +260,7 @@ _[see the values documentation for all configuration options](../charts/actions- ```console $ helm upgrade --install --namespace actions-runner-system --create-namespace \ - --wait actions-runner-controller actions/actions-runner-controller \ + --wait actions-runner-controller actions-runner-controller/actions-runner-controller \ --set "githubWebhookServer.enabled=true,service.type=NodePort,githubWebhookServer.ports[0].nodePort=33080" ``` @@ -282,7 +282,7 @@ If you plan to expose ARC via Ingress, you might not be required to make it a `N ```console $ helm upgrade --install --namespace actions-runner-system --create-namespace \ - --wait actions-runner-controller actions/actions-runner-controller \ + --wait actions-runner-controller actions-runner-controller/actions-runner-controller \ --set "githubWebhookServer.enabled=true" ```