Skip to content

Commit 969452c

Browse files
Added ingress resource
1 parent 00dfa68 commit 969452c

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
apiVersion: networking.k8s.io/v1
2+
kind: Ingress
3+
metadata:
4+
name: cap-app-proxy
5+
spec:
6+
ingressClassName: REPLACE_ME
7+
rules:
8+
- host: REPLACE_ME
9+
http:
10+
paths:
11+
- backend:
12+
service:
13+
name: cap-app-proxy
14+
port:
15+
number: 3017
16+
path: /app-proxy
17+
pathType: Prefix

0 commit comments

Comments
 (0)