31 lines
850 B
YAML
31 lines
850 B
YAML
apiVersion: networking.k8s.io/v1
|
|
kind: Ingress
|
|
metadata:
|
|
name: syncthing
|
|
labels:
|
|
app.kubernetes.io/name: syncthing
|
|
annotations:
|
|
cert-manager.io/cluster-issuer: letsencrypt-issuer
|
|
nginx.ingress.kubernetes.io/whitelist-source-range: 192.168.1.1/16
|
|
|
|
gethomepage.dev/enabled: "true"
|
|
gethomepage.dev/name: Syncthing
|
|
gethomepage.dev/group: Files
|
|
gethomepage.dev/href: https://sync.int.nc.landry.land
|
|
gethomepage.dev/description: Sync files between computers
|
|
gethomepage.dev/icon: syncthing
|
|
spec:
|
|
tls:
|
|
- hosts:
|
|
- "syncthing.int.nc.landry.land"
|
|
rules:
|
|
- host: "syncthing.int.nc.landry.land"
|
|
http:
|
|
paths:
|
|
- path: "/"
|
|
pathType: Prefix
|
|
backend:
|
|
service:
|
|
name: syncthing
|
|
port:
|
|
name: http
|