first upload

This commit is contained in:
2025-07-20 14:48:10 +02:00
parent c4d9a64b4f
commit 676e150f75
6 changed files with 110 additions and 0 deletions

36
apps/dokuwiki/istio.yaml Normal file
View File

@@ -0,0 +1,36 @@
apiVersion: networking.istio.io/v1
kind: Gateway
metadata:
name: dokuwiki-gw
namespace: default
spec:
selector:
istio: ingressgateway
servers:
- port:
number: 80
name: http
protocol: HTTP
hosts:
- "wiki.kind.local"
---
apiVersion: networking.istio.io/v1
kind: VirtualService
metadata:
name: dokuwiki-vs
namespace: default
spec:
hosts:
- "wiki.kind.local"
gateways:
- dokuwiki-gw
http:
- match:
- uri:
prefix: /
route:
- destination:
host: dokuwiki.default.svc.cluster.local
port:
number: 80