mirror of
https://github.com/actions/actions-runner-controller.git
synced 2025-12-10 11:41:27 +00:00
* Create optional serviceAnnotations value in helm chart * update annotation key * update annotation key - webhook service * fix README.md * docs: using consistent tense * docs: making the code comments more generic
19 lines
527 B
YAML
19 lines
527 B
YAML
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
labels:
|
|
{{- include "actions-runner-controller.labels" . | nindent 4 }}
|
|
name: {{ include "actions-runner-controller.metricsServiceName" . }}
|
|
namespace: {{ .Release.Namespace }}
|
|
{{- with .Values.metrics.serviceAnnotations }}
|
|
annotations:
|
|
{{- toYaml . | nindent 4 }}
|
|
{{- end }}
|
|
spec:
|
|
ports:
|
|
- name: metrics-port
|
|
port: {{ .Values.metrics.port }}
|
|
targetPort: metrics-port
|
|
selector:
|
|
{{- include "actions-runner-controller.selectorLabels" . | nindent 4 }}
|