drone-charts/templates/service.yaml

20 lines
561 B
YAML
Raw Normal View History

2021-07-21 20:17:38 +00:00
apiVersion: v1
kind: Service
metadata:
{{- with .Values.service.annotations }}
annotations:
{{- toYaml . | nindent 4 }}
{{- end }}
2021-07-21 20:17:38 +00:00
labels:
{{- include "drone.labels" . | nindent 4 }}
name: {{ include "drone.fullname" . }}
2021-07-21 20:17:38 +00:00
spec:
type: {{ .Values.service.type }}
ports:
- port: {{ .Values.service.port }}
targetPort: {{ .Values.config.DRONE_SERVER_PROTO | default "http" }}
2021-07-21 20:17:38 +00:00
protocol: TCP
name: {{ .Values.config.DRONE_SERVER_PROTO | default "http" }}
2021-07-21 20:17:38 +00:00
selector:
{{- include "drone.selectorLabels" . | nindent 4 }}