mirror of
https://github.com/Thumbscrew/k8s-charts.git
synced 2024-11-10 08:03:50 +00:00
16 lines
370 B
YAML
16 lines
370 B
YAML
|
apiVersion: v1
|
||
|
kind: Service
|
||
|
metadata:
|
||
|
name: {{ include "focalboard.fullname" . }}
|
||
|
labels:
|
||
|
{{- include "focalboard.labels" . | nindent 4 }}
|
||
|
spec:
|
||
|
type: {{ .Values.service.type }}
|
||
|
ports:
|
||
|
- port: {{ .Values.service.port }}
|
||
|
targetPort: http
|
||
|
protocol: TCP
|
||
|
name: http
|
||
|
selector:
|
||
|
{{- include "focalboard.selectorLabels" . | nindent 4 }}
|