feat: add lpt-fe and lpt-be services

This commit is contained in:
admin
2026-07-26 21:44:28 +08:00
parent 9ebafb97fb
commit bf6c4171ca
5 changed files with 65 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
apiVersion: v1
kind: Service
metadata:
name: lpt-be
namespace: lpt-dev
labels:
app: lpt-be
spec:
type: NodePort
selector:
app: lpt-be
ports:
- port: 8888
targetPort: 8888
nodePort: 30082
protocol: TCP
+16
View File
@@ -0,0 +1,16 @@
apiVersion: v1
kind: Service
metadata:
name: lpt-fe
namespace: lpt-dev
labels:
app: lpt-fe
spec:
type: NodePort
selector:
app: lpt-fe
ports:
- port: 80
targetPort: 80
nodePort: 30080
protocol: TCP