feat: adds deploy job to project

This commit is contained in:
2025-11-07 21:30:21 -03:00
parent 4e75afda84
commit 5af5006b87
10 changed files with 352 additions and 2 deletions

13
.k8s/service.template.yml Normal file
View File

@@ -0,0 +1,13 @@
apiVersion: v1
kind: Service
metadata:
namespace: ${KUBE_NAMESPACE}
name: backend-service
spec:
selector:
app: backend
ports:
- port: 8070
protocol: TCP
targetPort: 8070
type: ClusterIP