This commit is contained in:
2026-06-19 14:29:28 +07:00
commit 5c5fc60537
17 changed files with 526 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
apiVersion: v1
kind: Service
metadata:
name: {{ include "svc.name" . }}
namespace: {{ .Release.Namespace }}
labels:
{{- include "svc.labels" . | nindent 4 }}
spec:
type: ClusterIP
selector:
app: {{ .Release.Name }}
ports:
- port: {{ .Values.service.port }}
targetPort: {{ .Values.service.port }}
protocol: TCP