14 lines
361 B
YAML
14 lines
361 B
YAML
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: {{ template "common.names.fullname" . }}
|
|
labels: {{- include "lib.labels" . | nindent 4 }}
|
|
component: sextant
|
|
spec:
|
|
type: {{ .Values.service.type }}
|
|
ports:
|
|
- port: {{ .Values.service.port }}
|
|
targetPort: 80
|
|
protocol: TCP
|
|
selector: {{- include "common.labels.matchLabels" . | nindent 4}}
|