Skip to content

Commit ff3f889

Browse files
authored
Merge pull request #221 from covexo/fixes
Change nosleep functionality
2 parents 2859828 + 46e040c commit ff3f889

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

cmd/up.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -448,9 +448,9 @@ func (cmd *UpCmd) deployChart() {
448448
container := map[string]interface{}{}
449449
container["image"] = registry.GetImageURL(imageConf, true)
450450

451-
if !cmd.flags.noSleep {
452-
container["command"] = []string{"sleep"}
453-
container["args"] = []string{"99999999"}
451+
if cmd.flags.noSleep {
452+
container["command"] = []string{}
453+
container["args"] = []string{}
454454
}
455455

456456
containerValues[imageName] = container

0 commit comments

Comments
 (0)