From 7c99c980bbea0230928e817edfab6e6952abe5f6 Mon Sep 17 00:00:00 2001 From: ktech810 Date: Mon, 16 Mar 2026 11:36:57 -0700 Subject: [PATCH] Update vote-deployment.yaml -- resources block Update vote-deployment.yaml with resources block -- Address workload missing CPU request --- k8s-specifications/vote-deployment.yaml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/k8s-specifications/vote-deployment.yaml b/k8s-specifications/vote-deployment.yaml index 9a3e4332d..626da8188 100644 --- a/k8s-specifications/vote-deployment.yaml +++ b/k8s-specifications/vote-deployment.yaml @@ -20,8 +20,10 @@ spec: ports: - containerPort: 80 name: vote -# my test -# test -# test - -# test-1 + resources: + limits: + cpu: "500m" + memory: "128Mi" + requests: + cpu: "250m" + memory: "64Mi"