apiVersion: apps/v1 kind: Deployment metadata: name: whoami spec: replicas: 1 selector: matchLabels: app: whoami template: metadata: labels: app: whoami spec: containers: - name: whoami image: traefik/whoami:v1.10 ports: - containerPort: 80 resources: requests: cpu: 10m memory: 16Mi limits: memory: 64Mi