| 123456789101112131415161718192021222324252627282930 | apiVersion: v1kind: Podmetadata:  name: ubuntu  labels:    app: ubuntuspec:  # Uncomment and specify a specific node you want to debug  # nodeName: <insert-node-name-here>  containers:  - image: ubuntu    command:      - "sleep"      - "3600"    imagePullPolicy: IfNotPresent    name: ubuntu    securityContext:      privileged: true    volumeMounts:    - name: rootfolder      mountPath: /  restartPolicy: Never  hostIPC: true  hostNetwork: true  hostPID: true  volumes:  - hostPath:      path: /      type: ""    name: rootfolder
 |