Skip to content

Commit 052bac2

Browse files
committed
ops: Add backoffice to api gateway
1 parent 1a56aa8 commit 052bac2

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

k8s/ingress-backoffice.yaml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
apiVersion: networking.k8s.io/v1
2+
kind: Ingress
3+
metadata:
4+
name: backoffice-ingress
5+
namespace: default
6+
annotations:
7+
konghq.com/strip-path: "true"
8+
spec:
9+
ingressClassName: kong
10+
rules:
11+
- http:
12+
paths:
13+
- path: /backoffice
14+
pathType: Prefix
15+
backend:
16+
service:
17+
name: backoffice-app
18+
port:
19+
number: 80

0 commit comments

Comments
 (0)