mirror of
https://github.com/actions/actions-runner-controller.git
synced 2025-12-10 19:50:30 +00:00
Breaks up the ARC documentation into several smaller articles. `@vijay-train` and `@martin389` put together the plan for this update, and I've just followed it here. In these updates: - The README has been updated to include more general project information, and link to each new article. - The `detailed-docs.md` file has been broken up into multiple articles, and then deleted. - The Actions Runner Controller Overview doc has been renamed to `about-arc.md`. Any edits to content beyond generally renaming headers or fixing typos is out of scope for this PR, but will be made in the future. Co-authored-by: Bassem Dghaidi <568794+Link-@users.noreply.github.com>
27 lines
1.3 KiB
Markdown
27 lines
1.3 KiB
Markdown
# Installing ARC
|
|
|
|
## Installation
|
|
|
|
By default, actions-runner-controller uses [cert-manager](https://cert-manager.io/docs/installation/kubernetes/) for certificate management of Admission Webhook. Make sure you have already installed cert-manager before you install. The installation instructions for the cert-manager can be found below.
|
|
|
|
- [Installing cert-manager on Kubernetes](https://cert-manager.io/docs/installation/kubernetes/)
|
|
|
|
After installing cert-manager, install the custom resource definitions and actions-runner-controller with `kubectl` or `helm`. This will create an actions-runner-system namespace in your Kubernetes and deploy the required resources.
|
|
|
|
**Kubectl Deployment:**
|
|
|
|
```shell
|
|
# REPLACE "v0.25.2" with the version you wish to deploy
|
|
kubectl create -f https://github.com/actions/actions-runner-controller/releases/download/v0.25.2/actions-runner-controller.yaml
|
|
```
|
|
|
|
**Helm Deployment:**
|
|
|
|
Configure your values.yaml, see the chart's [README](../charts/actions-runner-controller/README.md) for the values documentation
|
|
|
|
```shell
|
|
helm repo add actions-runner-controller https://actions-runner-controller.github.io/actions-runner-controller
|
|
helm upgrade --install --namespace actions-runner-system --create-namespace \
|
|
--wait actions-runner-controller actions/actions-runner-controller
|
|
```
|