github.com/alibaba/sealer@v0.8.6-0.20220430115802-37a2bdaa8173/docs/commandline/sealer_join.md (about)

     1  ## sealer join
     2  
     3  join node to cluster
     4  
     5  ```
     6  sealer join [flags]
     7  ```
     8  
     9  ### Examples
    10  
    11  ```
    12  
    13  join to default cluster: merge
    14  	sealer join --masters x.x.x.x --nodes x.x.x.x
    15      sealer join --masters x.x.x.x-x.x.x.y --nodes x.x.x.x-x.x.x.y
    16  join to cluster by cloud provider, just set the number of masters or nodes:
    17  	sealer join --masters 2 --nodes 3
    18  specify the cluster name(If there is only one cluster in the $HOME/.sealer directory, it should be applied. ):
    19      sealer join --masters 2 --nodes 3 -c my-cluster
    20  
    21  ```
    22  
    23  ### Options
    24  
    25  ```
    26    -c, --cluster-name string   submit one cluster name
    27    -h, --help                  help for join
    28    -m, --masters string        set Count or IPList to masters
    29    -n, --nodes string          set Count or IPList to nodes
    30  ```
    31  
    32  ### Options inherited from parent commands
    33  
    34  ```
    35        --config string   config file (default is $HOME/.sealer.json)
    36    -d, --debug           turn on debug mode
    37  ```
    38  
    39  ### SEE ALSO
    40  
    41  * [sealer](sealer.md)	 - 
    42