feat: add initial Kubernetes manifests for e2e-test-app including deployment, service, PVC, and database initialization job

This commit is contained in:
2026-05-21 04:20:56 +00:00
parent 5733c20098
commit afa21ef650
7 changed files with 191 additions and 0 deletions

11
e2e-test-app/service.yaml Normal file
View File

@@ -0,0 +1,11 @@
apiVersion: v1
kind: Service
metadata:
name: e2e-test-app
spec:
selector:
component: web
ports:
- port: 80
targetPort: 8080
name: http