sleep 5000 명령을 수행하는 새로운 파드를 만드세요 apiVersion: v1 kind: Pod metadata: name: ubuntu-sleeper-2 spec: containers: - name: ubuntu image: ubuntu command: - sleep - "5000"Solution)apiVersion: v1 kind: Pod metadata: name: ubuntu-sleeper-2 spec: containers: - name: ubuntu image: ubuntu command: - sleep - "5000" or command: - "sleep" - "5000" or command: [ "sleep", "500..