This commit is contained in:
Waylon S. Walker 2025-02-22 16:03:02 -06:00
commit f8b377c347
10 changed files with 1147 additions and 0 deletions

View file

@ -0,0 +1,26 @@
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
labels:
service: {{ .Values.name }}
name: {{ .Values.name }}
namespace: {{ .Values.namespace }}
annotations:
cert-manager.io/cluster-issuer: letsencrypt-prod
spec:
rules:
- host: {{ .Values.name }}.{{ .Values.domain }}
http:
paths:
- backend:
service:
name: {{ .Values.name }}
port:
number: {{ .Values.port }}
path: /
pathType: Prefix
tls:
- hosts:
- {{ .Values.name }}.{{ .Values.domain }}
secretName: {{ .Values.name }}-cert-tls