You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
110 lines
1.9 KiB
110 lines
1.9 KiB
apiVersion: networking.istio.io/v1alpha3
|
|
kind: Gateway
|
|
metadata:
|
|
name: kubeflow-gateway
|
|
spec:
|
|
selector:
|
|
istio: $(gatewaySelector)
|
|
servers:
|
|
- port:
|
|
number: 80
|
|
name: http
|
|
protocol: HTTP
|
|
hosts:
|
|
- "*"
|
|
---
|
|
apiVersion: networking.istio.io/v1alpha3
|
|
kind: VirtualService
|
|
metadata:
|
|
name: grafana-vs
|
|
spec:
|
|
hosts:
|
|
- "*"
|
|
gateways:
|
|
- "kubeflow-gateway"
|
|
http:
|
|
- match:
|
|
- uri:
|
|
prefix: "/istio/grafana/"
|
|
method:
|
|
exact: "GET"
|
|
rewrite:
|
|
uri: "/"
|
|
route:
|
|
- destination:
|
|
host: "grafana.istio-system.svc.cluster.local"
|
|
port:
|
|
number: 3000
|
|
---
|
|
apiVersion: networking.istio.io/v1alpha3
|
|
kind: ServiceEntry
|
|
metadata:
|
|
name: google-api-entry
|
|
spec:
|
|
hosts:
|
|
- www.googleapis.com
|
|
ports:
|
|
- number: 443
|
|
name: https
|
|
protocol: HTTPS
|
|
resolution: DNS
|
|
location: MESH_EXTERNAL
|
|
---
|
|
apiVersion: networking.istio.io/v1alpha3
|
|
kind: VirtualService
|
|
metadata:
|
|
name: google-api-vs
|
|
spec:
|
|
hosts:
|
|
- www.googleapis.com
|
|
tls:
|
|
- match:
|
|
- port: 443
|
|
sni_hosts:
|
|
- www.googleapis.com
|
|
route:
|
|
- destination:
|
|
host: www.googleapis.com
|
|
port:
|
|
number: 443
|
|
weight: 100
|
|
---
|
|
apiVersion: networking.istio.io/v1alpha3
|
|
kind: ServiceEntry
|
|
metadata:
|
|
name: google-storage-api-entry
|
|
spec:
|
|
hosts:
|
|
- storage.googleapis.com
|
|
ports:
|
|
- number: 443
|
|
name: https
|
|
protocol: HTTPS
|
|
resolution: DNS
|
|
location: MESH_EXTERNAL
|
|
---
|
|
apiVersion: networking.istio.io/v1alpha3
|
|
kind: VirtualService
|
|
metadata:
|
|
name: google-storage-api-vs
|
|
spec:
|
|
hosts:
|
|
- storage.googleapis.com
|
|
tls:
|
|
- match:
|
|
- port: 443
|
|
sni_hosts:
|
|
- storage.googleapis.com
|
|
route:
|
|
- destination:
|
|
host: storage.googleapis.com
|
|
port:
|
|
number: 443
|
|
weight: 100
|
|
---
|
|
apiVersion: rbac.istio.io/v1alpha1
|
|
kind: ClusterRbacConfig
|
|
metadata:
|
|
name: default
|
|
spec:
|
|
mode: $(clusterRbacConfig)
|
|
|