diff --git a/cmd/podman/commands.go b/cmd/podman/commands.go
index fef5f1763e..53aa62eb9c 100644
--- a/cmd/podman/commands.go
+++ b/cmd/podman/commands.go
@@ -17,7 +17,6 @@ func getMainCommands() []*cobra.Command {
 		_diffCommand,
 		_execCommand,
 		_generateCommand,
-		_containerKubeCommand,
 		_playCommand,
 		_psCommand,
 		_loginCommand,
@@ -39,7 +38,6 @@ func getMainCommands() []*cobra.Command {
 		_topCommand,
 		_umountCommand,
 		_unpauseCommand,
-		volumeCommand.Command,
 		_waitCommand,
 	}
 
diff --git a/cmd/podman/play_kube.go b/cmd/podman/play_kube.go
index 9fc06dde95..a59460b718 100644
--- a/cmd/podman/play_kube.go
+++ b/cmd/podman/play_kube.go
@@ -52,8 +52,6 @@ func init() {
 	flags.BoolVarP(&playKubeCommand.Quiet, "quiet", "q", false, "Suppress output information when pulling images")
 	flags.StringVar(&playKubeCommand.SignaturePolicy, "signature-policy", "", "`Pathname` of signature policy file (not usually used)")
 	flags.BoolVar(&playKubeCommand.TlsVerify, "tls-verify", true, "Require HTTPS and verify certificates when contacting registries (default: true)")
-
-	rootCmd.AddCommand(playKubeCommand.Command)
 }
 
 func playKubeYAMLCmd(c *cliconfig.KubePlayValues) error {