Created
May 25, 2018 20:57
-
-
Save erikaulin/9bd354522208ca9f9b52203b7c733d7c to your computer and use it in GitHub Desktop.
Kubernetes kuard traefik
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: | |
name: kuard | |
namespace: default | |
spec: | |
rules: | |
- host: kuard.labs.example.com | |
http: | |
paths: | |
- path: / | |
backend: | |
serviceName: kuard-service | |
servicePort: 80 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment