-
With the new Autoscaling runner set for ARC we introduced TLDR; This is causing a lot of confusion for many of you because of the way it's designed. Many are under the assumption that the configuration we inject is hardcoded and not configurable. It's not hardcoded and it is configurable. Explanation below 👇 |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 14 replies
-
The illusion of 2 optionsWhenever you uncomment When you choose The 3rd optionIf you want to customize either of these options ( Example: changing the
|
Beta Was this translation helpful? Give feedback.
-
For people seeking a ready-made solution for dind-rootless I would like to put a link here for a PR that should've introduced rootless dind in ARC: #2919 |
Beta Was this translation helpful? Give feedback.
-
@Link- we have policies where we need to specify container resources (memory/cpu) when deploying our pods. However I see that the override does not honor these values for the |
Beta Was this translation helpful? Give feedback.
The illusion of 2 options
Whenever you uncomment
containerMode
in the values.yaml for thegha-runner-scale-set
helm chat you have 2 optionsdind
orkubernetes
.When you choose
dind
for example, this configuration will be automatically injected into the followingtemplate
section and when you choosekubernetes
this will be injected into thetemplate
section.The 3rd option
If you want to customize either of these options (
dind
orkubernetes
), just keepcontainerMode
commented out and simply paste whatever configuration you want undertemplate
!Example: changing the
DOCKER_HOST
value fordind
Let's say you don't want the
DOCKER_HOST
to be set to:unix:///run/docker/docker.sock
and instead, …