mirror of
https://gitlab.durp.info/durfy/homelab/gitops.git
synced 2026-05-09 16:51:31 -05:00
initial commit
This commit is contained in:
commit
d91a4238cc
86 changed files with 4143 additions and 0 deletions
24
whoogle/templates/ingress.yaml
Normal file
24
whoogle/templates/ingress.yaml
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
apiVersion: networking.k8s.io/v1
|
||||
kind: Ingress
|
||||
metadata:
|
||||
name: whoogle
|
||||
annotations:
|
||||
kubernetes.io/ingress.class: nginx
|
||||
nginx.ingress.kubernetes.io/proxy-body-size: "0"
|
||||
cert-manager.io/cluster-issuer: letsencrypt-production
|
||||
spec:
|
||||
rules:
|
||||
- host: whoogle.durp.info
|
||||
http:
|
||||
paths:
|
||||
- path: /
|
||||
pathType: Prefix
|
||||
backend:
|
||||
service:
|
||||
name: whoogle
|
||||
port:
|
||||
number: 5000
|
||||
tls:
|
||||
- hosts:
|
||||
- whoogle.durp.info
|
||||
secretName: whoogle-tls
|
||||
Loading…
Add table
Add a link
Reference in a new issue