1 Star 1 Fork 0

tanwubo / okd-istio-bookinfo

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
02-bookinfo-gateway.yaml 1.98 KB
一键复制 编辑 原始数据 按行查看 历史
tanwubo 提交于 2019-11-22 13:28 . first import
apiVersion: v1
kind: Route
metadata:
labels:
app: bookinfo
name: bookinfo-route
namespace: istio-system
spec:
host: bookinfo.example.com
port:
targetPort: http2
to:
kind: Service
name: istio-ingressgateway
---
apiVersion: networking.istio.io/v1alpha3
kind: Gateway
metadata:
name: bookinfo-gateway
namespace: myproject
spec:
selector:
istio: ingressgateway # use istio default controller
servers:
- port:
number: 80
name: http
protocol: HTTP
hosts:
- "bookinfo.example.com"
---
apiVersion: networking.istio.io/v1alpha3
kind: VirtualService
metadata:
name: bookinfo
namespace: myproject
spec:
hosts:
- "bookinfo.example.com"
gateways:
- bookinfo-gateway
http:
- match:
- uri:
exact: /productpage
- uri:
prefix: /static
- uri:
exact: /login
- uri:
exact: /logout
- uri:
prefix: /api/v1/products
route:
- destination:
host: productpage
port:
number: 9080
---
apiVersion: networking.istio.io/v1alpha3
kind: DestinationRule
metadata:
name: productpage
namespace: myproject
spec:
host: productpage
subsets:
- name: v1
labels:
version: v1
---
apiVersion: networking.istio.io/v1alpha3
kind: DestinationRule
metadata:
name: reviews
namespace: myproject
spec:
host: reviews
subsets:
- name: v1
labels:
version: v1
---
apiVersion: networking.istio.io/v1alpha3
kind: DestinationRule
metadata:
name: ratings
namespace: myproject
spec:
host: ratings
subsets:
- name: v1
labels:
version: v1
---
apiVersion: networking.istio.io/v1alpha3
kind: DestinationRule
metadata:
name: details
namespace: myproject
spec:
host: details
subsets:
- name: v1
labels:
version: v1
---
apiVersion: networking.istio.io/v1alpha3
kind: VirtualService
metadata:
name: reviews
namespace: myproject
spec:
hosts:
- reviews
http:
- route:
- destination:
host: reviews
subset: v1
---
1
https://gitee.com/tanwubo/okd-istio-bookinfo.git
git@gitee.com:tanwubo/okd-istio-bookinfo.git
tanwubo
okd-istio-bookinfo
okd-istio-bookinfo
master

搜索帮助