feat: initial template structure

This commit is contained in:
admin
2026-05-26 15:12:54 +09:00
parent b4adfd5641
commit b1689faab7
13 changed files with 220 additions and 1 deletions
+17
View File
@@ -0,0 +1,17 @@
apiVersion: v1
kind: Service
metadata:
name: {{ .Release.Name }}
namespace: core
labels:
app.kubernetes.io/name: {{ .Release.Name }}
app.kubernetes.io/managed-by: gitea-actions
spec:
type: {{ .Values.service.type }}
selector:
app: {{ .Release.Name }}
ports:
- name: http
port: {{ .Values.service.port }}
targetPort: {{ .Values.service.port }}
protocol: TCP