44 lines
1.6 KiB
YAML
44 lines
1.6 KiB
YAML
{{- $hasCustomResourceMeta := (and .Values.resourceMeta .Values.resourceMeta.managerRoleBinding) }}
|
|
apiVersion: rbac.authorization.k8s.io/v1
|
|
kind: RoleBinding
|
|
metadata:
|
|
name: {{ include "gha-runner-scale-set.managerRoleBindingName" . }}
|
|
namespace: {{ include "gha-runner-scale-set.namespace" . }}
|
|
labels:
|
|
{{- $base := include "gha-runner-scale-set.labels" . | fromYaml }}
|
|
{{- $extra := dict "app.kubernetes.io/component" "manager-role-binding" }}
|
|
{{- $reserved := merge $base $extra }}
|
|
{{- with .Values.labels }}
|
|
{{- range $k, $v := . }}
|
|
{{- if not (or (hasKey $reserved $k) (hasPrefix "actions.github.com/" $k)) }}
|
|
{{ $k }}: {{ $v | quote }}
|
|
{{- end }}
|
|
{{- end }}
|
|
{{- end }}
|
|
{{- if $hasCustomResourceMeta }}
|
|
{{- with .Values.resourceMeta.managerRoleBinding.labels }}
|
|
{{- toYaml . | nindent 4 }}
|
|
{{- end }}
|
|
{{- end }}
|
|
{{- include "gha-runner-scale-set.labels" . | nindent 4 }}
|
|
app.kubernetes.io/component: manager-role-binding
|
|
annotations:
|
|
{{- with .Values.annotations }}
|
|
{{- toYaml . | nindent 4 }}
|
|
{{- end }}
|
|
{{- if $hasCustomResourceMeta }}
|
|
{{- with .Values.resourceMeta.managerRoleBinding.annotations }}
|
|
{{- toYaml . | nindent 4 }}
|
|
{{- end }}
|
|
{{- end }}
|
|
finalizers:
|
|
- actions.github.com/cleanup-protection
|
|
roleRef:
|
|
apiGroup: rbac.authorization.k8s.io
|
|
kind: Role
|
|
name: {{ include "gha-runner-scale-set.managerRoleName" . }}
|
|
subjects:
|
|
- kind: ServiceAccount
|
|
name: {{ include "gha-runner-scale-set.managerServiceAccountName" . | nindent 4 }}
|
|
namespace: {{ include "gha-runner-scale-set.managerServiceAccountNamespace" . | nindent 4 }}
|