apiVersion: v1
kind: Service
metadata:
  name: {{ template "drakemall-admin.fullname" . }}
  labels:
    app: {{ template "drakemall-admin.name" . }}
    chart: {{ template "drakemall-admin.chart" . }}
    release: {{ .Release.Name }}
    heritage: {{ .Release.Service }}
spec:
  type: NodePort
  ports:
    - port: 8080
      targetPort: admin-http
      protocol: TCP
      name: admin-http
    - port: 5000
      targetPort: graphql-http
      protocol: TCP
      name: graphql-http
  selector:
    app: {{ template "drakemall-admin.name" . }}
    release: {{ .Release.Name }}