Initial Commit

This commit is contained in:
2025-02-22 16:08:08 +00:00
commit 5350b77e93
257 changed files with 12568 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
labels:
app: {{ .Values.appName }}
name: {{ .Values.appName }}-ingress
spec:
rules:
- host: {{ .Values.domain }}
http:
paths:
- backend:
service:
name: {{ .Values.appName }}-svc
port:
number: 80
path: /
pathType: Exact