How does one create labels for runner pods? #2525
Answered
by
shankarRaman
shankarRaman
asked this question in
Questions
-
I see that there's field for adding labels to the runners which get translated as runner tags. What I am looking for is adding labels to the actual pod through the |
Beta Was this translation helpful? Give feedback.
Answered by
shankarRaman
May 10, 2023
Replies: 2 comments
-
apiVersion: actions.summerwind.dev/v1alpha1
|
Beta Was this translation helpful? Give feedback.
0 replies
-
Thanks @devops-sailboat kind: RunnerDeployment
metadata:
name: {{ .Values.name }}
spec:
template:
metadata:
labels:
foo: bar
spec:
imagePullSecrets: |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
shankarRaman
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks @devops-sailboat
I figured what I needed,