Initial commit
This commit is contained in:
commit
55b0cfc1f3
10 changed files with 298 additions and 0 deletions
24
lidarr/ingress.yml
Normal file
24
lidarr/ingress.yml
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
apiVersion: networking.k8s.io/v1
|
||||
kind: Ingress
|
||||
metadata:
|
||||
name: lidarr
|
||||
labels:
|
||||
app.kubernetes.io/name: lidarr
|
||||
annotations:
|
||||
cert-manager.io/cluster-issuer: "letsencrypt-production"
|
||||
spec:
|
||||
tls:
|
||||
- hosts:
|
||||
- lidarr.foxhawk.co.uk
|
||||
secretName: lidarr-tls
|
||||
rules:
|
||||
- host: lidarr.foxhawk.co.uk
|
||||
http:
|
||||
paths:
|
||||
- pathType: Prefix
|
||||
path: "/"
|
||||
backend:
|
||||
service:
|
||||
name: lidarr
|
||||
port:
|
||||
number: 80
|
||||
Loading…
Add table
Add a link
Reference in a new issue