Replies: 1 comment
-
no update from anyone. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I deployed ARC on EKS using helm chart and creating runner-set as well. I am trying to use this image summerwind/actions-runner-dind to create my custom runner-set because I have DinD requirement. This image needs 3 env variable before starting the runner process
RUNNER_NAME, RUNNRE_ORG and RUNNER_TOKEN
while the intial 2 are static value
RUNER_TOKEN is dynamic value which is registation token generates while calling curl api from this URL https://api.github.com/orgs//actions/runners/registration-token
but the token will expire in 1 hour.
I am running sh script in init container to generate the token but I am not able to pass that value in runner container as env value to this env name RUNNER_TOKEN.
If there is any other approach I am fine to follow that as well. How do I pass registration token to this env variable RUNNER_TOKEN because the image doesn't allow to override so I am unable to do any modification as well.
Beta Was this translation helpful? Give feedback.
All reactions