나는 명령으로 포드를 시작했다
$ kubectl run busybox --image=busybox --restart=Never --tty -i --generator=run-pod/v1
문제가 발생하여 이제 삭제할 수 없습니다 Pod
.
아래 설명 된 방법을 사용해 보았지만 Pod
계속 재생됩니다.
$ kubectl delete pods busybox-na3tm
pod "busybox-na3tm" deleted
$ kubectl get pods
NAME READY STATUS RESTARTS AGE
busybox-vlzh3 0/1 ContainerCreating 0 14s
$ kubectl delete pod busybox-vlzh3 --grace-period=0
$ kubectl delete pods --all
pod "busybox-131cq" deleted
pod "busybox-136x9" deleted
pod "busybox-13f8a" deleted
pod "busybox-13svg" deleted
pod "busybox-1465m" deleted
pod "busybox-14uz1" deleted
pod "busybox-15raj" deleted
pod "busybox-160to" deleted
pod "busybox-16191" deleted
$ kubectl get pods --all-namespaces
NAMESPACE NAME READY STATUS RESTARTS AGE
default busybox-c9rnx 0/1 RunContainerError 0 23s
kubectl get events
이 객체를 만드는 것이 무엇인지 확인할 수 있습니까 ?
kubctl get rc
ReplicationController이 생성 있는지. 그렇다면 삭제 한 다음 포드를 삭제하십시오.
kubectl get deployment
kubectl delete deployment <deployment_name>
. 배치 이름을 얻으려면 어떻게kubectl get deployments
kubectl get all -o name
습니까?