Skip to content

Commit 00cc61b

Browse files
author
Grant Shipley
committedNov 20, 2019
adding ingress for my cluster
1 parent d07c74d commit 00cc61b

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed
 

‎kubernetes/ingress.yaml

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
apiVersion: extensions/v1beta1
2+
kind: Ingress
3+
metadata:
4+
name: ingress-wildwest
5+
namespace: wildwest
6+
annotations:
7+
# use the shared ingress-nginx
8+
kubernetes.io/ingress.class: "nginx"
9+
spec:
10+
rules:
11+
- host: wildwest.apps.techdope.io
12+
http:
13+
paths:
14+
- path: /
15+
backend:
16+
serviceName: wildwest
17+
servicePort: 8080

0 commit comments

Comments
 (0)