feat(helm): add frontend Deployment and Service templates

This commit is contained in:
Tuan-Dat Tran
2026-02-24 00:34:03 +01:00
parent 613f0774d2
commit 4ee97ed767
2 changed files with 80 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
apiVersion: v1
kind: Service
metadata:
name: {{ include "cv-app.fullname" . }}-frontend
labels:
{{- include "cv-app.labels" . | nindent 4 }}
app.kubernetes.io/component: frontend
spec:
type: ClusterIP
ports:
- port: 80
targetPort: http
protocol: TCP
name: http
selector:
{{- include "cv-app.selectorLabels" . | nindent 4 }}
app.kubernetes.io/component: frontend