Skip to content

Commit

Permalink
Added '-i' flag option to up/down commands.
Browse files Browse the repository at this point in the history
  • Loading branch information
dkapanidis committed Aug 12, 2016
1 parent e5b6712 commit 9e35c9f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions cmd/tide/down.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,5 +38,6 @@ func runUninstall(cmd *cobra.Command, args []string) error {

func init() {
uninstallCmd.Flags().BoolVarP(&verbose, "verbose", "v", false, "enable verbose render")
uninstallCmd.Flags().StringVarP(&input_file, "input", "i", "", "input file for variables")
RootCommand.AddCommand(uninstallCmd)
}
1 change: 1 addition & 0 deletions cmd/tide/up.go
Original file line number Diff line number Diff line change
Expand Up @@ -115,5 +115,6 @@ func init() {
applyCmd.Flags().BoolVarP(&verbose, "verbose", "v", false, "enable verbose apply")
applyCmd.Flags().BoolVarP(&watch, "watch", "w", false, "watch directory for changes")
applyCmd.Flags().BoolVarP(&deletion, "delete", "d", false, "Automatically delete the chart when it exits")
applyCmd.Flags().StringVarP(&input_file, "input", "i", "", "input file for variables")
RootCommand.AddCommand(applyCmd)
}

0 comments on commit 9e35c9f

Please sign in to comment.