v1.0.0 release: Initial release

This commit is contained in:
Waylon S. Walker 2025-02-04 15:19:12 -06:00
commit 9ec5e3d112
11 changed files with 1184 additions and 0 deletions

View file

@ -0,0 +1,21 @@
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: nginx-reverse-proxy-ingress
namespace: {{ .Values.namespace }}
annotations:
cert-manager.io/cluster-issuer: letsencrypt-prod
spec:
rules:
{{- range .Values.sites }}
- host: {{ .name }}.{{ .host }}
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: nginx-reverse-proxy
port:
number: 80
{{- end }}