From fb50dae658f4069aa1535c6c32855fece5e57317e7ddab65bf7cd3694ea216c0 Mon Sep 17 00:00:00 2001 From: Andrew Date: Sun, 26 Apr 2026 22:53:25 -0400 Subject: [PATCH] =?UTF-8?q?feat(helm):=20Service=20template=20(ClusterIP,?= =?UTF-8?q?=20port=2080=20=E2=86=92=20http)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 4.7 (1M context) --- helm/ezscale-website/templates/service.yaml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 helm/ezscale-website/templates/service.yaml diff --git a/helm/ezscale-website/templates/service.yaml b/helm/ezscale-website/templates/service.yaml new file mode 100644 index 0000000..f06b798 --- /dev/null +++ b/helm/ezscale-website/templates/service.yaml @@ -0,0 +1,15 @@ +apiVersion: v1 +kind: Service +metadata: + name: {{ include "ezscale-website.fullname" . }} + labels: {{- include "ezscale-website.labels" . | nindent 4 }} +spec: + type: {{ .Values.service.type }} + ports: + - port: {{ .Values.service.port }} + targetPort: http + protocol: TCP + name: http + selector: + {{- include "ezscale-website.selectorLabels" . | nindent 4 }} + app.kubernetes.io/component: app