k8s manifests for atbbs (https://github.com/alyraffauf/atbbs by @aly.codes)
bbs.vlan.foo
1apiVersion: traefik.io/v1alpha1
2kind: IngressRoute
3metadata:
4 name: atbbs
5 namespace: ${namespace}
6spec:
7 entryPoints:
8 - websecure
9 routes:
10 - match: Host(`${subdomain}.${domain}`) && PathPrefix(`/`)
11 kind: Rule
12 services:
13 - name: atbbs
14 port: 80
15 tls:
16 secretName: atbbs-ssl
17