mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-08-10 07:50:08 -04:00
cli: fix coordinator/node count order
This commit is contained in:
parent
8b7bafb482
commit
393c1f7dd1
3 changed files with 5 additions and 5 deletions
|
@ -33,8 +33,8 @@ func newCreateGCPCmd() *cobra.Command {
|
|||
|
||||
// runCreateGCP runs the create command.
|
||||
func runCreateGCP(cmd *cobra.Command, args []string) error {
|
||||
countNodes, _ := strconv.Atoi(args[0]) // err already checked in args validation
|
||||
countCoordinators, _ := strconv.Atoi(args[1]) // err already checked in args validation
|
||||
countCoordinators, _ := strconv.Atoi(args[0]) // err already checked in args validation
|
||||
countNodes, _ := strconv.Atoi(args[1]) // err already checked in args validation
|
||||
size := strings.ToLower(args[2])
|
||||
project := "constellation-331613" // TODO: This will be user input
|
||||
zone := "europe-west3-b" // TODO: This will be user input
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue