Created
June 14, 2019 09:38
-
-
Save lucasponce/148c1c1c9b9fcdfd6499422311cba5e4 to your computer and use it in GitHub Desktop.
Istio Telemetry Addons
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: grafana-gateway | |
| namespace: istio-system | |
| spec: | |
| selector: | |
| istio: ingressgateway | |
| servers: | |
| - port: | |
| number: 15031 | |
| name: http-grafana | |
| protocol: HTTP | |
| hosts: | |
| - "*" | |
| --- | |
| apiVersion: networking.istio.io/v1alpha3 | |
| kind: VirtualService | |
| metadata: | |
| name: grafana-vs | |
| namespace: istio-system | |
| spec: | |
| hosts: | |
| - "*" | |
| gateways: | |
| - grafana-gateway | |
| http: | |
| - match: | |
| - port: 15031 | |
| route: | |
| - destination: | |
| host: grafana | |
| port: | |
| number: 3000 | |
| --- | |
| apiVersion: networking.istio.io/v1alpha3 | |
| kind: DestinationRule | |
| metadata: | |
| name: grafana | |
| namespace: istio-system | |
| spec: | |
| host: grafana | |
| trafficPolicy: | |
| tls: | |
| mode: DISABLE | |
| --- | |
| apiVersion: networking.istio.io/v1alpha3 | |
| kind: Gateway | |
| metadata: | |
| name: kiali-gateway | |
| namespace: istio-system | |
| spec: | |
| selector: | |
| istio: ingressgateway | |
| servers: | |
| - port: | |
| number: 15029 | |
| name: http-kiali | |
| protocol: HTTP | |
| hosts: | |
| - "*" | |
| --- | |
| apiVersion: networking.istio.io/v1alpha3 | |
| kind: VirtualService | |
| metadata: | |
| name: kiali-vs | |
| namespace: istio-system | |
| spec: | |
| hosts: | |
| - "*" | |
| gateways: | |
| - kiali-gateway | |
| http: | |
| - match: | |
| - port: 15029 | |
| route: | |
| - destination: | |
| host: kiali | |
| port: | |
| number: 20001 | |
| --- | |
| apiVersion: networking.istio.io/v1alpha3 | |
| kind: DestinationRule | |
| metadata: | |
| name: kiali | |
| namespace: istio-system | |
| spec: | |
| host: kiali | |
| trafficPolicy: | |
| tls: | |
| mode: DISABLE | |
| --- | |
| apiVersion: networking.istio.io/v1alpha3 | |
| kind: Gateway | |
| metadata: | |
| name: prometheus-gateway | |
| namespace: istio-system | |
| spec: | |
| selector: | |
| istio: ingressgateway | |
| servers: | |
| - port: | |
| number: 15030 | |
| name: http-prom | |
| protocol: HTTP | |
| hosts: | |
| - "*" | |
| --- | |
| apiVersion: networking.istio.io/v1alpha3 | |
| kind: VirtualService | |
| metadata: | |
| name: prometheus-vs | |
| namespace: istio-system | |
| spec: | |
| hosts: | |
| - "*" | |
| gateways: | |
| - prometheus-gateway | |
| http: | |
| - match: | |
| - port: 15030 | |
| route: | |
| - destination: | |
| host: prometheus | |
| port: | |
| number: 9090 | |
| --- | |
| apiVersion: networking.istio.io/v1alpha3 | |
| kind: DestinationRule | |
| metadata: | |
| name: prometheus | |
| namespace: istio-system | |
| spec: | |
| host: prometheus | |
| trafficPolicy: | |
| tls: | |
| mode: DISABLE | |
| --- | |
| apiVersion: networking.istio.io/v1alpha3 | |
| kind: Gateway | |
| metadata: | |
| name: tracing-gateway | |
| namespace: istio-system | |
| spec: | |
| selector: | |
| istio: ingressgateway | |
| servers: | |
| - port: | |
| number: 15032 | |
| name: http-tracing | |
| protocol: HTTP | |
| hosts: | |
| - "*" | |
| --- | |
| apiVersion: networking.istio.io/v1alpha3 | |
| kind: VirtualService | |
| metadata: | |
| name: tracing-vs | |
| namespace: istio-system | |
| spec: | |
| hosts: | |
| - "*" | |
| gateways: | |
| - tracing-gateway | |
| http: | |
| - match: | |
| - port: 15032 | |
| route: | |
| - destination: | |
| host: tracing | |
| port: | |
| number: 80 | |
| --- | |
| apiVersion: networking.istio.io/v1alpha3 | |
| kind: DestinationRule | |
| metadata: | |
| name: tracing | |
| namespace: istio-system | |
| spec: | |
| host: tracing | |
| trafficPolicy: | |
| tls: | |
| mode: DISABLE | |
| --- |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment