Initial commit

This commit is contained in:
helmchart
2025-11-20 07:40:48 +00:00
commit 8d805728f4
10 changed files with 302 additions and 0 deletions

15
templates/service.yaml Normal file
View File

@@ -0,0 +1,15 @@
apiVersion: v1
kind: Service
metadata:
name: {{ include "{{ .Chart.Name }}.fullname" . }}
labels:
{{- include "{{ .Chart.Name }}.labels" . | nindent 4 }}
spec:
type: {{ .Values.service.type }}
ports:
- port: {{ .Values.service.port }}
targetPort: 80
protocol: TCP
name: http
selector:
{{- include "{{ .Chart.Name }}.selectorLabels" . | nindent 4 }}