Documentation ¶
Index ¶
- type DeployOptions
- type ExecOptions
- type Manager
- func (m *Manager) Deploy(clusterName string, clusterVersion string, topoFile string, opt DeployOptions, ...) error
- func (m *Manager) DestroyCluster(clusterName string, gOpt operator.Options, destroyOpt operator.Options, ...) error
- func (m *Manager) Display(clusterName string, opt operator.Options) error
- func (m *Manager) EditConfig(clusterName string, skipConfirm bool) error
- func (m *Manager) Exec(clusterName string, opt ExecOptions, gOpt operator.Options) error
- func (m *Manager) ListCluster() error
- func (m *Manager) Patch(clusterName string, packagePath string, opt operator.Options, overwrite bool) error
- func (m *Manager) Reload(clusterName string, opt operator.Options, skipRestart bool) error
- func (m *Manager) RestartCluster(clusterName string, options operator.Options) error
- func (m *Manager) ScaleIn(clusterName string, skipConfirm bool, sshTimeout int64, nativeSSH bool, ...) error
- func (m *Manager) ScaleOut(clusterName string, topoFile string, ...) error
- func (m *Manager) StartCluster(name string, options operator.Options, ...) error
- func (m *Manager) StopCluster(clusterName string, options operator.Options) error
- func (m *Manager) Upgrade(clusterName string, clusterVersion string, opt operator.Options) error
- type ScaleOutOptions
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type DeployOptions ¶
type DeployOptions struct { User string // username to login to the SSH server IdentityFile string // path to the private key file UsePassword bool // use password instead of identity file for ssh connection IgnoreConfigCheck bool // ignore config check result }
DeployOptions contains the options for scale out. TODO: merge ScaleOutOptions, should check config too when scale out.
type ExecOptions ¶
ExecOptions for exec shell commanm.
type Manager ¶
type Manager struct {
// contains filtered or unexported fields
}
Manager to deploy a cluster.
func NewManager ¶
func NewManager(sysName string, specManager *spec.SpecManager) *Manager
NewManager create a Manager.
func (*Manager) Deploy ¶
func (m *Manager) Deploy( clusterName string, clusterVersion string, topoFile string, opt DeployOptions, afterDeploy func(b *task.Builder, newPart spec.Topology), skipConfirm bool, optTimeout int64, sshTimeout int64, nativeSSH bool, ) error
Deploy a cluster.
func (*Manager) DestroyCluster ¶
func (m *Manager) DestroyCluster(clusterName string, gOpt operator.Options, destroyOpt operator.Options, skipConfirm bool) error
DestroyCluster destroy the cluster.
func (*Manager) EditConfig ¶
EditConfig let the user edit the config.
func (*Manager) Patch ¶
func (m *Manager) Patch(clusterName string, packagePath string, opt operator.Options, overwrite bool) error
Patch the cluster.
func (*Manager) RestartCluster ¶
RestartCluster restart the cluster.
func (*Manager) ScaleIn ¶
func (m *Manager) ScaleIn( clusterName string, skipConfirm bool, sshTimeout int64, nativeSSH bool, force bool, nodes []string, scale func(builer *task.Builder, metadata spec.Metadata), ) error
ScaleIn the cluster.
func (*Manager) ScaleOut ¶
func (m *Manager) ScaleOut( clusterName string, topoFile string, afterDeploy func(b *task.Builder, newPart spec.Topology), final func(b *task.Builder, name string, meta spec.Metadata), opt ScaleOutOptions, skipConfirm bool, optTimeout int64, sshTimeout int64, nativeSSH bool, ) error
ScaleOut scale out the cluster.
func (*Manager) StartCluster ¶
func (m *Manager) StartCluster(name string, options operator.Options, fn ...func(b *task.Builder, metadata spec.Metadata)) error
StartCluster start the cluster with specified name.
func (*Manager) StopCluster ¶
StopCluster stop the cluster.
type ScaleOutOptions ¶
type ScaleOutOptions struct { User string // username to login to the SSH server IdentityFile string // path to the private key file UsePassword bool // use password instead of identity file for ssh connection }
ScaleOutOptions contains the options for scale out.
Click to show internal directories.
Click to hide internal directories.