Created
January 12, 2019 13:17
-
-
Save dwdraju/cb52c09707fd35c79f99de539524954a to your computer and use it in GitHub Desktop.
istio get host real ip
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: v1 | |
| kind: Service | |
| metadata: | |
| name: istio-ingressgateway | |
| namespace: istio-system | |
| annotations: | |
| labels: | |
| chart: gateways-1.0.5 | |
| release: istio | |
| heritage: Tiller | |
| app: istio-ingressgateway | |
| istio: ingressgateway | |
| spec: | |
| type: LoadBalancer | |
| externalTrafficPolicy: Local | |
| selector: | |
| app: istio-ingressgateway | |
| istio: ingressgateway | |
| ports: | |
| - | |
| name: http2 | |
| nodePort: 31380 | |
| port: 80 | |
| targetPort: 80 | |
| - | |
| name: https | |
| nodePort: 31390 | |
| port: 443 | |
| - | |
| name: tcp | |
| nodePort: 31400 | |
| port: 31400 | |
| - | |
| name: tcp-pilot-grpc-tls | |
| port: 15011 | |
| targetPort: 15011 | |
| - | |
| name: tcp-citadel-grpc-tls | |
| port: 8060 | |
| targetPort: 8060 | |
| - | |
| name: tcp-dns-tls | |
| port: 853 | |
| targetPort: 853 | |
| - | |
| name: http2-prometheus | |
| port: 15030 | |
| targetPort: 15030 | |
| - | |
| name: http2-grafana | |
| port: 15031 | |
| targetPort: 15031 | |
| --- |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment