Created
May 9, 2020 19:04
-
-
Save fai555/81de1c31032b4ec8872dceb8ae9ceb13 to your computer and use it in GitHub Desktop.
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
| kubectl apply -f - <<EOF | |
| apiVersion: networking.istio.io/v1alpha3 | |
| kind: Gateway | |
| metadata: | |
| name: httpbin-gateway | |
| namespace: foo | |
| spec: | |
| selector: | |
| istio: ingressgateway # use Istio default gateway implementation | |
| servers: | |
| - port: | |
| number: 80 | |
| name: http | |
| protocol: HTTP | |
| hosts: | |
| - "*" | |
| EOF |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment