service.yaml 511 B

12345678910111213141516171819
  1. apiVersion: v1
  2. kind: Service
  3. metadata:
  4. name: {{ template "helm-guestbook.fullname" . }}
  5. labels:
  6. app: {{ template "helm-guestbook.name" . }}
  7. chart: {{ template "helm-guestbook.chart" . }}
  8. release: {{ .Release.Name }}
  9. heritage: {{ .Release.Service }}
  10. spec:
  11. type: {{ .Values.service.type }}
  12. ports:
  13. - port: {{ .Values.service.port }}
  14. targetPort: http
  15. protocol: TCP
  16. name: http
  17. selector:
  18. app: {{ template "helm-guestbook.name" . }}
  19. release: {{ .Release.Name }}