frontend implementation

This commit is contained in:
Roger Oriol
2025-10-09 20:19:20 +02:00
parent a1cede4157
commit efa7ff1d39
19 changed files with 3072 additions and 71 deletions

15
kubernetes/service.yaml Normal file
View File

@@ -0,0 +1,15 @@
apiVersion: v1
kind: Service
metadata:
name: gym-tracker
labels:
app: gym-tracker
spec:
type: ClusterIP # Change to LoadBalancer or NodePort if external access is needed
ports:
- port: 80
targetPort: 80
protocol: TCP
name: http
selector:
app: gym-tracker