apiVersion: v1 kind: Pod metadata: name: pod-with-limits namespace: default labels: app: my-app version: "1.0.0" team: platform environment: staging spec: containers: - name: nginx image: nginx:1.25.3 # конкретный тег — хорошо resources: requests: memory: "64Mi" cpu: "50m" limits: memory: "128Mi" cpu: "100m"