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,69 @@
---
apiVersion: v1
kind: Service
metadata:
namespace: plane
name: plane-admin
labels:
app.name: plane-admin
spec:
clusterIP: None
ports:
- name: admin-3000
port: 3000
protocol: TCP
targetPort: 3000
selector:
app.name: plane-admin
---
apiVersion: v1
kind: Service
metadata:
namespace: plane
name: plane-api
labels:
app.name: plane-api
spec:
clusterIP: None
ports:
- name: api-8000
port: 8000
protocol: TCP
targetPort: 8000
selector:
app.name: plane-api
---
apiVersion: v1
kind: Service
metadata:
namespace: plane
name: plane-space
labels:
app.name: plane-space
spec:
clusterIP: None
ports:
- name: space-3000
port: 3000
protocol: TCP
targetPort: 3000
selector:
app.name: plane-space
---
apiVersion: v1
kind: Service
metadata:
namespace: plane
name: plane-web
labels:
app.name: plane-web
spec:
clusterIP: None
ports:
- name: web-3000
port: 3000
protocol: TCP
targetPort: 3000
selector:
app.name: plane-web
---