add external wgui ingress

This commit is contained in:
Steffen Illium 2024-04-23 18:54:03 +02:00
parent 5af01bcdce
commit bc1d9b415e
3 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,12 @@
apiVersion: v1
kind: Service
metadata:
name: wgui
spec:
type: ExternalName
externalName: 10.6.0.1
ports:
- port: 80
targetPort: 5182
protocol: TCP
name: http

View File

@ -0,0 +1,16 @@
apiVersion: traefik.io/v1alpha1
kind: IngressRoute
metadata:
name: wgui
namespace: traefik
spec:
entryPoints:
- web-local
- websecure-local
routes:
- match: Host(`wgui.steffenillium.de`)
kind: Rule
services:
- name: wgui
port: http

View File

@ -0,0 +1,3 @@
resources:
- adguard-ingress.yaml
- adguard-service.yaml