fix: scenarios having solution in problem statement itself

Signed-off-by: Abhinav Sinha <[email protected]>
This commit is contained in:
Abhinav Sinha
2026-06-16 16:47:16 +05:30
parent 3e77495f4b
commit f21fdc1730
4 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -5,7 +5,7 @@
"difficulty": "Easy",
"type": "task",
"weight": 4,
"description": "## Scaling a Deployment\n\nA deployment named `webapp` is currently running with **1 replica**. Traffic has increased and you need to scale it up.\n\n**Your task:**\n\nScale the `webapp` deployment to **4 replicas** and verify all pods become Ready.\n\n```bash\n# You can use the imperative command\nkubectl scale deployment webapp --replicas=4\n# Or edit the manifest\nkubectl edit deployment webapp\n```",
"description": "## Scaling a Deployment\n\nA deployment named `webapp` is currently running with **1 replica**. Traffic has increased and you need to scale it up.\n\n**Your task:**\n\nScale the `webapp` deployment to **4 replicas** and verify all pods become Ready.",
"hints": [
{
"title": "Scale imperatively",