charts/zombi/cytube/templates/svc.yaml
2020-12-29 19:03:27 +00:00

19 lines
436 B
YAML

kind: Service
apiVersion: v1
metadata:
name: {{ .Release.Name }}
labels:
app.kubernetes.io/name: cytube
app.kubernetes.io/instance: {{ .Release.Name }}
spec:
ports:
- name: frontend
port: 8080
- name: socket
port: 8081 # this cannot be 443 since traefik will assume HTTPS
targetPort: 443
selector:
app.kubernetes.io/name: cytube
app.kubernetes.io/instance: {{ .Release.Name }}
type: ClusterIP