Introduction to installation of Action Runner Controller with docker in docker
We must install docker in the worker node
---------
helm install arc --namespace "${NAMESPACE}" --create-namespace oci://ghcr.io/actions/actions-runner-controller-charts/gha-runner-scale-set-controller
-------
helm install "${INSTALLATION_NAME}" --namespace "${NAMESPACE}" --create-namespace --set githubConfigUrl="${GITHUB_CONFIG_URL}" --set githubConfigSecret.github_token="${GITHUB_PAT}" --set containerMode.type="dind" oci://ghcr.io/actions/actions-runner-controller-charts/gha-runner-scale-set
--set containerMode.type="dind" : This will allow the container to use the docker in the host
Comments
Post a Comment