demo-chart/templates/service.yaml

16 lines
370 B
YAML
Raw Normal View History

2023-03-29 01:29:07 +00:00
apiVersion: v1
kind: Service
metadata:
2023-04-19 02:35:56 +00:00
name: {{ include "ailab-demo.fullname" . }}
2023-03-29 01:29:07 +00:00
labels:
2023-04-19 02:35:56 +00:00
{{- include "ailab-demo.labels" . | nindent 4 }}
2023-03-29 01:29:07 +00:00
spec:
type: {{ .Values.service.type }}
ports:
- port: {{ .Values.service.port }}
targetPort: http
protocol: TCP
name: http
selector:
2023-04-19 02:35:56 +00:00
{{- include "ailab-demo.selectorLabels" . | nindent 4 }}