Skip to content

Commit b07ed63

Browse files
committed
Add istio virtualservice to katib external-db
1 parent 9caa8bc commit b07ed63

File tree

2 files changed

+23
-0
lines changed

2 files changed

+23
-0
lines changed

manifests/v1beta1/installs/katib-external-db/kustomization.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ resources:
1414
- ../../components/ui/
1515
# Katib webhooks.
1616
- ../../components/webhook/
17+
# Kubeflow istio virtual service.
18+
- ui-virtual-service.yaml
1719
images:
1820
- name: ghcr.io/kubeflow/katib/katib-controller
1921
newName: ghcr.io/kubeflow/katib/katib-controller
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
---
2+
apiVersion: networking.istio.io/v1alpha3
3+
kind: VirtualService
4+
metadata:
5+
name: katib-ui
6+
spec:
7+
gateways:
8+
- kubeflow-gateway
9+
hosts:
10+
- "*"
11+
http:
12+
- match:
13+
- uri:
14+
prefix: /katib/
15+
rewrite:
16+
uri: /katib/
17+
route:
18+
- destination:
19+
host: katib-ui.kubeflow.svc.cluster.local
20+
port:
21+
number: 80

0 commit comments

Comments
 (0)