Add Kubernetes deployment configurations

- Add deployment.yaml with imagePullSecrets configured
- Add service.yaml with NodePort configuration
- Ensures proper image pull authentication from private registry

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
2026-07-20 21:23:50 +08:00
parent 4bda9d6ba2
commit 68d5ca119a
2 changed files with 69 additions and 0 deletions
+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