Skip to content

Latest commit

 

History

History
65 lines (55 loc) · 1.89 KB

File metadata and controls

65 lines (55 loc) · 1.89 KB
Parameter introduction of kube-install

Introduction:

The parameters about kube-install can be viewed using the `kube-install help` or `kube-install -opt help` command.
 # kube-install help
Usage of kube-install: -opt [OPTIONS] COMMAND [ARGS]...

Options: 
  init             Initialize the system environment.
  install          Install k8s cluster.
  addnode          Add k8s-node to the cluster.
  delnode          Remove the k8s-node from the cluster.
  rebuildmaster    Rebuild the damaged k8s-master.
  delmaster        Remove the k8s-master from the cluster.
  help             Display help information.

Commands:
  master           The IP address of k8s-master server.
  mastervip       K8s-master cluster virtual IP address.
  node             The IP address of k8s-node server.
  sshpwd           SSH login root password of each server.
For example:
  Initialize the system environment:
    kube-install -opt init
  Install k8s cluster:
    kube-install -opt install -master "192.168.1.11,192.168.1.12,192.168.1.13" -node "192.168.1.11,192.168.1.12,192.168.1.13,192.168.1.14" -mastervip "192.168.1.88" -sshpwd "cloudnativer"
  Add k8s-node to the cluster:
    kube-install -opt addnode -node "192.168.1.15,192.168.1.16" -sshpwd "cloudnativer"
  Remove the k8s-node from the cluster:
    kube-install -opt delnode -node "192.168.1.13,192.168.1.15" -sshpwd "cloudnativer"
  Remove the k8s-master from the cluster:
    kube-install -opt delmaster -master "192.168.1.13" -sshpwd "cloudnativer"
  Rebuild the damaged k8s-master:
    kube-install -opt rebuildmaster -master "192.168.1.13" -sshpwd "cloudnativer"
  Display help information:
    kube-install -opt help