v1 release: Initial release
This commit is contained in:
commit
b3d904805c
11 changed files with 1184 additions and 0 deletions
21
helm-chart/templates/ingress.yaml
Normal file
21
helm-chart/templates/ingress.yaml
Normal 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 }}
|
||||
Loading…
Add table
Add a link
Reference in a new issue