Skip to content

Instantly share code, notes, and snippets.

@cm-graham
Created February 14, 2017 01:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cm-graham/51c866e87934b53daa64afa104a4f6b7 to your computer and use it in GitHub Desktop.
Save cm-graham/51c866e87934b53daa64afa104a4f6b7 to your computer and use it in GitHub Desktop.
Ingress Controller
apiVersion: extensions/v1beta1
kind: Ingress
metadata:
name: "nexus"
namespace: "kube-system"
labels:
app: "nexus"
annotations:
kubernetes.io/tls-acme: "true"
kubernetes.io/ingress.class: "nginx"
spec:
tls:
- secretName: wildcard
rules:
- http:
paths:
- backend:
serviceName: "nexus"
servicePort: 80
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment