Files
actions-runner-controller/charts/gha-runner-scale-set-controller/templates/serviceaccount.yaml
T

13 lines
439 B
YAML
Raw Normal View History

2023-03-16 09:21:43 -04:00
{{- if .Values.serviceAccount.create }}
apiVersion: v1
kind: ServiceAccount
metadata:
name: {{ include "gha-runner-scale-set-controller.serviceAccountName" . }}
2025-03-18 20:41:04 +00:00
namespace: {{ include "gha-runner-scale-set-controller.namespace" . }}
labels:
{{- include "gha-runner-scale-set-controller.labels" . | nindent 4 }}
{{- with .Values.serviceAccount.annotations }}
annotations:
{{- toYaml . | nindent 4 }}
{{- end }}
{{- end }}