Skip to content

Instantly share code, notes, and snippets.

@0sc
Created January 8, 2017 18:01
Show Gist options
  • Save 0sc/efa96d5ceaa5a706217cf2db7cbd198f to your computer and use it in GitHub Desktop.
Save 0sc/efa96d5ceaa5a706217cf2db7cbd198f to your computer and use it in GitHub Desktop.
Ingress deployment for simple auth tutorial
apiVersion: extensions/v1beta1
kind: Ingress
metadata:
name: simple-auth-ingress
spec:
backend:
serviceName: default-http-backend
servicePort: 80
rules:
- host: simple-auth.me
http:
paths:
- path: /
backend:
serviceName: simple-auth
servicePort: 3000
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment