frp/charts/frps/templates/dashboard-service.yaml
2024-04-16 08:30:28 +00:00

20 lines
498 B
YAML

apiVersion: v1
kind: Service
metadata:
name: {{ include "frps.fullname" . }}-dashboard
labels:
{{- include "frps.labels" . | nindent 4 }}
{{- with .Values.dashboardService.annotations }}
annotations:
{{- . | toYaml | nindent 4 }}
{{- end }}
spec:
type: {{ .Values.dashboardService.type }}
ports:
- port: {{ .Values.dashboardService.port }}
targetPort: dashboard
protocol: TCP
name: http
selector:
{{- include "frps.selectorLabels" . | nindent 4 }}