cli: add --emptyvols to Up/Down
This commit is contained in:
@@ -160,6 +160,12 @@ func UpCommand() cli.Command {
|
||||
Action: func(c *cli.Context) {
|
||||
app.Up(c)
|
||||
},
|
||||
Flags: []cli.Flag{
|
||||
cli.BoolFlag{
|
||||
Name: "emptyvols",
|
||||
Usage: "Use Empty Volumes. Don't generate PVCs",
|
||||
},
|
||||
},
|
||||
}
|
||||
}
|
||||
|
||||
@@ -171,6 +177,12 @@ func DownCommand() cli.Command {
|
||||
Action: func(c *cli.Context) {
|
||||
app.Down(c)
|
||||
},
|
||||
Flags: []cli.Flag{
|
||||
cli.BoolFlag{
|
||||
Name: "emptyvols",
|
||||
Usage: "Use Empty Volumes. Don't generate PVCs",
|
||||
},
|
||||
},
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user