Skip to content

Commit

Permalink
fix join node bug
Browse files Browse the repository at this point in the history
  • Loading branch information
fanux committed Apr 11, 2019
1 parent fbbe03f commit b99b01e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion install/sealos.go
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ func (s *SealosInstaller) JoinNodes() {
var masters string
var wg sync.WaitGroup
for _, master := range s.Masters {
masters += fmt.Sprintf("--master %s:6443", master)
masters += fmt.Sprintf(" --master %s:6443", master)
}

for _, node := range s.Nodes {
Expand Down

0 comments on commit b99b01e

Please sign in to comment.