RUNNER_LABELS not being passed to current runner #2710
-
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 2 replies
-
Can you explain more about what you mean by "trying to set up the RUNNER_LABELS env in the controller". Not sure what exactly you are trying to do. Actions-runner-controller does not have RUNNER_LABELS as a parameter only has labels and podLabels. |
Beta Was this translation helpful? Give feedback.
-
Why dont you set the labels on your RunnerDeploymet resource that you are creating? i.e apiVersion: actions.summerwind.dev/v1alpha1 |
Beta Was this translation helpful? Give feedback.
-
If you want to set labels on your arc then you can only use the parameters provided here And then add it to your values.yaml template RUNNER_LABELS is not a valid parameter |
Beta Was this translation helpful? Give feedback.
Why dont you set the labels on your RunnerDeploymet resource that you are creating? i.e
apiVersion: actions.summerwind.dev/v1alpha1
kind: RunnerDeployment
metadata:
name: actions-runners-small
namespace: actions
spec:
template:
spec:
repository: org/actions-runner
labels:
- small-runner
- dev
................