I am running Kubernetes through Docker . After the tutorial, I started Nginx POD with kubectl run nginx --image=nginx --port=80. However, this creates orphaned PODs (without a replication controller). kubectl get rcreturns nothing and kubectl describe pod nginx-198147104-kqudhshows the Replication Controllers: none (the kubectl version "v1.2.0 + 5cb86ee" shows the controllers: ReplicaSet / nginx-198147104, but scaling to 0 just calls the new Nginx pod that will be created and cannot be deleted).
I would like to be able to remove Kubernetes managed Nginx container from Docker. I was not lucky to learn how to remove an orphan envelope (without recreating it ...).
Client version : version.Info {Major: "1", Minor: "0", GitVersion: "v1.0.4", GitCommit: "65d28d5fd12345592405714c81cd03b9c41d41d9", GitTreeState: "clean"}
Server version : version.Info {Major: "1 ", Minor:" 2 ", GitVersion:" v1.2.0 ", GitCommit:" 5cb86ee022267586db386f62781338b0483733b3 ", GitTreeState:" clean "}
source
share