Merge pull request #2443 from baude/playstartrecursive

start pod containers recursively
This commit is contained in:
OpenShift Merge Robot
2019-02-26 18:46:36 +01:00
committed by GitHub

View File

@ -153,7 +153,7 @@ func playKubeYAMLCmd(c *cliconfig.KubePlayValues) error {
// start the containers // start the containers
for _, ctr := range containers { for _, ctr := range containers {
if err := ctr.Start(ctx, false); err != nil { if err := ctr.Start(ctx, true); err != nil {
// Making this a hard failure here to avoid a mess // Making this a hard failure here to avoid a mess
// the other containers are in created status // the other containers are in created status
return err return err