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
+21
View File
@@ -0,0 +1,21 @@
# 使用する場合のみ残す
# {{- if .Values.ingress.enabled }}
# apiVersion: networking.k8s.io/v1
# kind: Ingress
# metadata:
# name: {{ .Release.Name }}-ingress
# namespace: core
# spec:
# ingressClassName: {{ .Values.ingress.className }}
# rules:
# - host: {{ .Values.ingress.host }}
# http:
# paths:
# - path: /
# pathType: Prefix
# backend:
# service:
# name: {{ .Release.Name }}
# port:
# number: {{ .Values.service.port }}
# {{- end }}