Skip to content

Commit

Permalink
fix: Fix errors dur to stdin/TTY being disabled
Browse files Browse the repository at this point in the history
This reverts commit d8d9a3f.
  • Loading branch information
gabe565 committed Oct 4, 2023
1 parent d8d9a3f commit b75c85a
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions internal/util/cmd_setup.go
Original file line number Diff line number Diff line change
Expand Up @@ -214,6 +214,8 @@ func createJob(cmd *cobra.Command, conf *config.Global, actionName string) error
ImagePullPolicy: corev1.PullAlways,
Command: []string{"sleep"},
Args: []string{"infinity"},
TTY: true,
Stdin: true,
},
},
},
Expand Down

0 comments on commit b75c85a

Please sign in to comment.