doc: Fix chart name for helm commands in docs (#2287)

This commit is contained in:
Yusuke Kuoka 2023-02-16 07:09:23 +09:00 committed by GitHub
parent d9627141dc
commit f677fd5872
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 6 additions and 6 deletions

View File

@ -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
```

View File

@ -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

View File

@ -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
```

View File

@ -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"
```