apiVersion: v1
kind: Pod
metadata:
  name: cpu-burst-demo
  namespace: resource-lab
  labels:
    lesson: resources
    scenario: cpu-burst
spec:
  nodeName: cp-3
  containers:
  - name: main
    image: busybox:1.36
    command: ["sh", "-c", "while true; do :; done"]
    resources:
      requests:
        cpu: 100m
        memory: 64Mi
      limits:
        memory: 128Mi
