mirror of
https://github.com/actions/actions-runner-controller.git
synced 2025-12-10 19:50:30 +00:00
Signed-off-by: Jesús Fernández <7312236+fernandezcuesta@users.noreply.github.com> Co-authored-by: Nikola Jokic <jokicnikola07@gmail.com>
21 lines
593 B
YAML
21 lines
593 B
YAML
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: {{ include "actions-runner-controller.webhookServiceName" . }}
|
|
namespace: {{ include "actions-runner-controller.namespace" . }}
|
|
labels:
|
|
{{- include "actions-runner-controller.labels" . | nindent 4 }}
|
|
{{- with .Values.service.annotations }}
|
|
annotations:
|
|
{{- toYaml . | nindent 4 }}
|
|
{{- end }}
|
|
spec:
|
|
type: {{ .Values.service.type }}
|
|
ports:
|
|
- port: 443
|
|
targetPort: {{ .Values.webhookPort }}
|
|
protocol: TCP
|
|
name: https
|
|
selector:
|
|
{{- include "actions-runner-controller.selectorLabels" . | nindent 4 }}
|