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 }}