Created
November 9, 2018 04:14
-
-
Save sudermanjr/3808e4fb4595ee5c810e4cb13b4c7139 to your computer and use it in GitHub Desktop.
Kube202 Ingress
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: extensions/v1beta1 | |
kind: Ingress | |
metadata: | |
annotations: | |
kubernetes.io/ingress.class: nginx | |
name: test-ingress | |
namespace: kube202 | |
spec: | |
rules: | |
- host: nginx-test.do.sudermanjr.com | |
http: | |
paths: | |
- backend: | |
serviceName: test-service | |
servicePort: 80 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment