github.com/inspektor-gadget/inspektor-gadget@v0.28.1/docs/examples/limited-memory-pod.yaml (about)

     1  ---
     2  apiVersion: v1
     3  kind: Namespace
     4  metadata:
     5    name: oomkill-demo
     6  ---
     7  apiVersion: v1
     8  kind: Pod
     9  metadata:
    10    name: test-pod
    11    namespace: oomkill-demo
    12  spec:
    13    containers:
    14    - name: test-container
    15      image: busybox
    16      resources:
    17        limits:
    18          memory: "128Mi"
    19      command: ["sleep", "inf"]