diff --git a/manifests/deviceservice.yaml b/manifests/deviceservice.yaml
index 9dbd695536eda33c97f4e248fe88a032c3c607bd..21efae309ff6bc09ccc92724847f0607ffe1f51f 100644
--- a/manifests/deviceservice.yaml
+++ b/manifests/deviceservice.yaml
@@ -41,6 +41,11 @@ spec:
         env:
         - name: LOG_LEVEL
           value: "DEBUG"
+        startupProbe:
+          exec:
+            command: ["/bin/grpc_health_probe", "-addr=:2020"]
+          failureThreshold: 30
+          periodSeconds: 10
         readinessProbe:
           exec:
             command: ["/bin/grpc_health_probe", "-addr=:2020"]
@@ -49,11 +54,11 @@ spec:
             command: ["/bin/grpc_health_probe", "-addr=:2020"]
         resources:
           requests:
-            cpu: 150m
-            memory: 128Mi
-          limits:
             cpu: 500m
             memory: 512Mi
+          limits:
+            cpu: 1000m
+            memory: 1024Mi
 ---
 apiVersion: v1
 kind: Service