Files
hapi-fhir-jpaserver-starter/charts/hapi-fhir-jpaserver/templates/service.yaml
chgl 67caa88e06 updated helm chart to use latest v6.0.1 version of the image (#382)
* updated helm chart to use latest v6.0.1 version of the image

* updated workflow to run against multiple k8s versions
2022-06-04 14:24:28 +02:00

20 lines
510 B
YAML

apiVersion: v1
kind: Service
metadata:
name: {{ include "hapi-fhir-jpaserver.fullname" . }}
labels:
{{- include "hapi-fhir-jpaserver.labels" . | nindent 4 }}
spec:
type: {{ .Values.service.type }}
ports:
- port: {{ .Values.service.port }}
targetPort: http
protocol: TCP
name: http
- port: {{ .Values.metrics.service.port }}
targetPort: metrics
protocol: TCP
name: metrics
selector:
{{- include "hapi-fhir-jpaserver.selectorLabels" . | nindent 4 }}