Last active
June 19, 2020 21:31
-
-
Save tylertreat/372d30dbba97f650349f027987b52388 to your computer and use it in GitHub Desktop.
GKE ingress with static IP
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: extensions/v1beta1 | |
kind: Ingress | |
metadata: | |
name: basic-ingress | |
annotations: | |
kubernetes.io/ingress.global-static-ip-name: "web-static-ip" | |
spec: | |
backend: | |
serviceName: web | |
servicePort: 8080 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment