Code of Conduct
What article on docs.github.com is affected?
https://docs.github.com/en/actions/how-tos/manage-runners/use-actions-runner-controller/deploy-runner-scale-sets#using-kubernetes-mode
What part(s) of the article would you like to see updated?
Root is not required for running kubernetes no volume. I just updated spec to
securityContext:
allowPrivilegeEscalation: false
capabilities:
drop:
- ALL
runAsGroup: 1001
runAsNonRoot: true
runAsUser: 1001
via helm and it is working fine without root. this was hold up for me when deciding between kubernetes and kubernetes no volume mode
Additional information
No response
Code of Conduct
What article on docs.github.com is affected?
https://docs.github.com/en/actions/how-tos/manage-runners/use-actions-runner-controller/deploy-runner-scale-sets#using-kubernetes-mode
What part(s) of the article would you like to see updated?
Root is not required for running kubernetes no volume. I just updated spec to
securityContext:
allowPrivilegeEscalation: false
capabilities:
drop:
- ALL
runAsGroup: 1001
runAsNonRoot: true
runAsUser: 1001
via helm and it is working fine without root. this was hold up for me when deciding between kubernetes and kubernetes no volume mode
Additional information
No response