Created
June 21, 2018 10:12
-
-
Save ymesika/c21c49fb123224d2668455dd9e42d671 to your computer and use it in GitHub Desktop.
Bookinfo with HTTPS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apiVersion: networking.istio.io/v1alpha3 | |
kind: Gateway | |
metadata: | |
name: bookinfo-gateway | |
spec: | |
selector: | |
istio: ingressgateway # use istio default controller | |
servers: | |
- port: | |
number: 443 | |
name: https | |
protocol: HTTPS | |
tls: | |
mode: SIMPLE | |
serverCertificate: /etc/istio/ingressgateway-certs/tls.crt | |
privateKey: /etc/istio/ingressgateway-certs/tls.key | |
hosts: | |
- "*" | |
--- | |
apiVersion: networking.istio.io/v1alpha3 | |
kind: VirtualService | |
metadata: | |
name: bookinfo | |
spec: | |
hosts: | |
- "*" | |
gateways: | |
- bookinfo-gateway | |
http: | |
- match: | |
- uri: | |
exact: /productpage | |
- uri: | |
exact: /login | |
- uri: | |
exact: /logout | |
- uri: | |
prefix: /api/v1/products | |
route: | |
- destination: | |
host: productpage | |
port: | |
number: 9080 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The following steps were conducted with Istio release 0.8.0 on IBM Cloud Kubernetes Service: