Skip to content

Debug

Pod

apiVersion: v1
kind: Pod
metadata:
  name: busybox
  namespace: default
spec:
# nodeName: "optional-node-name-to-fix-scheduling"
  containers:
  - name: busybox
    image: busybox:1.28
    command:
      - sleep
      - "3600"
    imagePullPolicy: IfNotPresent
  restartPolicy: Always