Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
Follow-up for #275
  • Loading branch information
mumoshu committed Jan 29, 2021
1 parent da020df commit a2690aa
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,20 @@ actions-runner-controller uses [cert-manager](https://cert-manager.io/docs/insta

- [Installing cert-manager on Kubernetes](https://cert-manager.io/docs/installation/kubernetes/)

Install the custom resource and actions-runner-controller itself. This will create actions-runner-system namespace in your Kubernetes and deploy the required resources.
Install the custom resource and actions-runner-controller with `kubectl` or `helm`. This will create actions-runner-system namespace in your Kubernetes and deploy the required resources.

`kubectl`:

```
# REPLACE "v0.16.1" with the latest release
kubectl apply -f https://github.com/summerwind/actions-runner-controller/releases/download/v0.16.1/actions-runner-controller.yaml
```

`helm`:

```
helm repo add runner https://summerwind.github.io/actions-runner-controller
helm install -n actions-runner-system runner runner/actions-runner-controller
helm repo add actions-runner-controller https://summerwind.github.io/actions-runner-controller
helm upgrade --install -n actions-runner-system actions-runner-controller/actions-runner-controller
```

### Github Enterprise support
Expand Down

0 comments on commit a2690aa

Please sign in to comment.