blob: cb9361b15b1509ca5502eeb951783225902907e1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
apiVersion: v1
kind: Service
metadata:
name: {{ include "cgit.fullname" . }}
labels:
{{ include "cgit.labels" . | indent 4 }}
spec:
type: {{ .Values.service.type }}
ports:
- port: {{ .Values.service.port }}
targetPort: http
protocol: TCP
name: http
selector:
app.kubernetes.io/name: {{ include "cgit.name" . }}
app.kubernetes.io/instance: {{ .Release.Name }}
|