mirror of
https://github.com/HangarMC/Hangar.git
synced 2024-11-27 06:01:08 +08:00
17 lines
429 B
YAML
17 lines
429 B
YAML
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: {{ include "hangar.fullname" . }}-frontend
|
|
labels:
|
|
{{- include "hangar.labels" . | nindent 4 }}
|
|
spec:
|
|
type: {{ .Values.frontend.service.type }}
|
|
ports:
|
|
- port: {{ .Values.frontend.service.port }}
|
|
targetPort: http
|
|
protocol: TCP
|
|
name: http
|
|
selector:
|
|
{{- include "hangar.selectorLabels" . | nindent 4 }}
|
|
app.kubernetes.io/component: "frontend"
|