37 lines
600 B
YAML
37 lines
600 B
YAML
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
|