diff --git a/kubernetes/frontend-new-deployment.yaml b/kubernetes/frontend-new-deployment.yaml
index 2e05097522a8e1d042989fd335469a58739a70af..74242bf342b900299dcf1bf3e745d5ddaf58bcf4 100644
--- a/kubernetes/frontend-new-deployment.yaml
+++ b/kubernetes/frontend-new-deployment.yaml
@@ -17,14 +17,19 @@ spec:
         app.kubernetes.io/part-of: villas-web
     spec:
       containers:
-      - image: registry.git.rwth-aachen.de/acs/public/villas/web:latest
+      - image: registry.git.rwth-aachen.de/acs/public/villas/web:6f3cbf27
         name: frontend-new
         ports:
-        - name: http
-          containerPort: 80
+        - containerPort: 5000
+          name: http
+          protocol: TCP
         livenessProbe:
+          failureThreshold: 3
           httpGet:
             path: /
             port: 80
+            scheme: HTTP
           initialDelaySeconds: 3
           periodSeconds: 3
+          successThreshold: 1
+          timeoutSeconds: 1