From 5df9a937c5ae57e88aab8cf240740a21a3d45f63 Mon Sep 17 00:00:00 2001 From: boomam <37086258+boomam@users.noreply.github.com> Date: Mon, 6 Nov 2023 08:55:25 -0500 Subject: [PATCH] Create service.yaml --- helm-chart/templates/service.yaml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 helm-chart/templates/service.yaml diff --git a/helm-chart/templates/service.yaml b/helm-chart/templates/service.yaml new file mode 100644 index 0000000..38ca95e --- /dev/null +++ b/helm-chart/templates/service.yaml @@ -0,0 +1,14 @@ +--- +kind: Service +apiVersion: v1 +metadata: + name: ladder-service +spec: + type: ClusterIP + selector: + app: ladder + ports: + - name: http + port: {{ .Values.ingress.PORT }} + protocol: TCP + targetPort: {{ .Values.env.PORT }}