mirror of
https://github.com/michaelthomson0797/fleet-infra.git
synced 2026-02-04 04:59:54 +00:00
27 lines
727 B
YAML
27 lines
727 B
YAML
apiVersion: networking.k8s.io/v1
|
|
kind: Ingress
|
|
metadata:
|
|
name: syncthing
|
|
namespace: syncthing
|
|
annotations:
|
|
external-dns.alpha.kubernetes.io/target: michaelthomson.ddns.net
|
|
external-dns.alpha.kubernetes.io/cloudflare-proxied: "true"
|
|
traefik.ingress.kubernetes.io/router.entrypoints: websecure
|
|
traefik.ingress.kubernetes.io/router.tls: "true"
|
|
spec:
|
|
rules:
|
|
- host: syncthing.michaelthomson.dev
|
|
http:
|
|
paths:
|
|
- pathType: ImplementationSpecific
|
|
path: /
|
|
backend:
|
|
service:
|
|
name: syncthing
|
|
port:
|
|
name: http
|
|
tls:
|
|
- hosts:
|
|
- syncthing.michaelthomson.dev
|
|
secretName: letsencrypt-wildcard-cert-michaelthomson.dev
|