How to stop Replicaset from restarting?

后端 未结 1 773
情话喂你
情话喂你 2021-01-22 17:08

I started a test if my kubernetes installation is running well, with:

$ kubectl run -it hello --image=busybox -- sh

However it didn\'t work. No

相关标签:
1条回答
  • 2021-01-22 17:33

    The run command creates a deployment which controls the replicaset please run the following commands to verify and solve:

    kubectl get deployments
    
    kubectl delete deployment hello
    
    0 讨论(0)
提交回复
热议问题