Skip to content

Commit

Permalink
Fix the size flag
Browse files Browse the repository at this point in the history
  • Loading branch information
torrefatto committed Jul 17, 2024
1 parent 10890e3 commit 7766699
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/koyeb/volumes.go
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ func NewVolumeCmd() *cobra.Command {
}),
}
createVolumeCmd.Flags().String("region", "was", "Region of the volume")
createVolumeCmd.Flags().String("size", "20G", "Size of the volume (will be rounded to the nearest upper size in MB)")
createVolumeCmd.Flags().Int64("size", 20, "Size of the volume in GB")
createVolumeCmd.Flags().Bool("read-only", false, "Force the volume to be read-only")
volumeCmd.AddCommand(createVolumeCmd)

Expand Down

0 comments on commit 7766699

Please sign in to comment.