add app plane

This commit is contained in:
2024-07-31 01:48:52 +10:00
parent 447188e7a3
commit 1d32f45c78
12 changed files with 510 additions and 0 deletions

View File

@@ -0,0 +1,46 @@
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
namespace: plane
name: plane-ingress
spec:
ingressClassName: nginx
rules:
- host: plane.cluster.edward.sydney
http:
paths:
- backend:
service:
port:
number: 3000
name: plane-web
path: /
pathType: Prefix
- backend:
service:
port:
number: 8000
name: plane-api
path: /api
pathType: Prefix
- backend:
service:
port:
number: 8000
name: plane-api
path: /auth
pathType: Prefix
- backend:
service:
port:
number: 3000
name: plane-space
path: /spaces
pathType: Prefix
- backend:
service:
port:
number: 3000
name: plane-admin
path: /god-mode
pathType: Prefix