apiVersion: apps/v1 kind: Deployment metadata: name: cpu-intensive-deployment spec: replicas: 5 selector: matchLabels: app: cpu-intensive template: metadata: labels: app: cpu-intensive spec: containers: - name: cpu-intensive-container image: ghcr.io/vish/stress:latest resources: requests: cpu: "4000m" memory: "1Gi" limits: cpu: "4000m" memory: "2Gi" command: ["stress"] args: ["--cpu", "4", "--timeout", "600"]