Last active
November 18, 2018 13:44
-
-
Save tanan/f8d784c5e051623a36e0c0f0c8a37604 to your computer and use it in GitHub Desktop.
create istio gateway
This file contains 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: sample-gateway | |
namespace: default | |
spec: | |
selector: | |
istio: ingressgateway | |
servers: | |
- hosts: | |
- 'sample.hoge.com' | |
port: | |
name: http | |
number: 80 | |
protocol: HTTP |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment