diff --git a/deploy/tfs.sh b/deploy/tfs.sh
index 5edc0c29bc9dd84e6dc92970ab358a14ab6fb4a2..e6a0c0c1053b69462a0e60c6b6cebe28a7dc59af 100755
--- a/deploy/tfs.sh
+++ b/deploy/tfs.sh
@@ -259,7 +259,7 @@ for COMPONENT in $TFS_COMPONENTS; do
 
     echo "  Adapting '$COMPONENT' manifest file..."
     MANIFEST="$TMP_MANIFESTS_FOLDER/${COMPONENT}service.yaml"
-    #cp ./manifests/"${COMPONENT}"service.yaml "$MANIFEST"
+    # cp ./manifests/"${COMPONENT}"service.yaml "$MANIFEST"
     cat ./manifests/"${COMPONENT}"service.yaml | linkerd inject - --proxy-cpu-request "10m" --proxy-cpu-limit "1" --proxy-memory-request "64Mi" --proxy-memory-limit "256Mi" > "$MANIFEST"
 
     if [ "$COMPONENT" == "pathcomp" ]; then
diff --git a/manifests/contextservice.yaml b/manifests/contextservice.yaml
index ab8ccc521fca6679672faaf310cc86b8200e959d..96735bf5f89f682f31131c123ee9884a1becbfdb 100644
--- a/manifests/contextservice.yaml
+++ b/manifests/contextservice.yaml
@@ -54,11 +54,11 @@ spec:
             command: ["/bin/grpc_health_probe", "-addr=:1010"]
         resources:
           requests:
-            cpu: 150m
+            cpu: 250m
             memory: 128Mi
           limits:
-            cpu: 500m
-            memory: 512Mi
+            cpu: 1000m
+            memory: 1024Mi
 ---
 apiVersion: v1
 kind: Service
diff --git a/manifests/deviceservice.yaml b/manifests/deviceservice.yaml
index 4bf4d6247c491f9b704bb79cbcd21c652fd84ca4..a99e3e5884745aa1971e5ad7f914901e38f75d47 100644
--- a/manifests/deviceservice.yaml
+++ b/manifests/deviceservice.yaml
@@ -53,8 +53,8 @@ spec:
             command: ["/bin/grpc_health_probe", "-addr=:2020"]
         resources:
           requests:
-            cpu: 500m
-            memory: 512Mi
+            cpu: 250m
+            memory: 128Mi
           limits:
             cpu: 1000m
             memory: 1024Mi
diff --git a/manifests/monitoringservice.yaml b/manifests/monitoringservice.yaml
index 06ac823a169c2b08f46a225db3fe04defe7e87f4..dbcfa68a036e3323f42e423de14002ba85576171 100644
--- a/manifests/monitoringservice.yaml
+++ b/manifests/monitoringservice.yaml
@@ -36,7 +36,7 @@ spec:
         - containerPort: 9192
         env:
         - name: LOG_LEVEL
-          value: "DEBUG"
+          value: "INFO"
         envFrom:
         - secretRef:
             name: qdb-data
@@ -48,11 +48,11 @@ spec:
             command: ["/bin/grpc_health_probe", "-addr=:7070"]
         resources:
           requests:
-            cpu: 50m
-            memory: 64Mi
+            cpu: 250m
+            memory: 256Mi
           limits:
-            cpu: 500m
-            memory: 512Mi
+            cpu: 1000m
+            memory: 1024Mi
 ---
 apiVersion: v1
 kind: Service
diff --git a/manifests/pathcompservice.yaml b/manifests/pathcompservice.yaml
index 2fae0c8f27a58b09b27144841b5752c10dbe982c..c85922d961ecc7b99e8fa2476b5e61db7ed52a9d 100644
--- a/manifests/pathcompservice.yaml
+++ b/manifests/pathcompservice.yaml
@@ -69,10 +69,10 @@ spec:
         #  timeoutSeconds: 5
         resources:
           requests:
-            cpu: 100m
+            cpu: 250m
             memory: 256Mi
           limits:
-            cpu: 500m
+            cpu: 1000m
             memory: 1024Mi
 ---
 apiVersion: v1
diff --git a/manifests/serviceservice.yaml b/manifests/serviceservice.yaml
index 6143740e893406611f86ee4353798ac829971c28..7d7bdaa4ef9ad4972da6236071810c63a9faa4f8 100644
--- a/manifests/serviceservice.yaml
+++ b/manifests/serviceservice.yaml
@@ -45,11 +45,11 @@ spec:
             command: ["/bin/grpc_health_probe", "-addr=:3030"]
         resources:
           requests:
-            cpu: 150m
+            cpu: 250m
             memory: 128Mi
           limits:
-            cpu: 500m
-            memory: 512Mi
+            cpu: 1000m
+            memory: 1024Mi
 ---
 apiVersion: v1
 kind: Service
diff --git a/manifests/sliceservice.yaml b/manifests/sliceservice.yaml
index 7f4d022b3fa07f20481287a131938b2f42867347..e7e5c1604a8b971424ff5f7e5bf292c4b263cbfe 100644
--- a/manifests/sliceservice.yaml
+++ b/manifests/sliceservice.yaml
@@ -50,11 +50,11 @@ spec:
             command: ["/bin/grpc_health_probe", "-addr=:4040"]
         resources:
           requests:
-            cpu: 150m
+            cpu: 250m
             memory: 128Mi
           limits:
-            cpu: 500m
-            memory: 512Mi
+            cpu: 1000m
+            memory: 1024Mi
 ---
 apiVersion: v1
 kind: Service