本文整理汇总了Golang中github.com/deis/deis/deisctl/backend.Backend.Stop方法的典型用法代码示例。如果您正苦于以下问题:Golang Backend.Stop方法的具体用法?Golang Backend.Stop怎么用?Golang Backend.Stop使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/deis/deis/deisctl/backend.Backend
的用法示例。
在下文中一共展示了Backend.Stop方法的12个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: Stop
// Stop deactivates the specified components.
func Stop(targets []string, b backend.Backend) error {
// if target is platform, stop all services
if len(targets) == 1 {
if targets[0] == PlatformCommand {
return StopPlatform(b, false)
} else if targets[0] == StatelessPlatformCommand {
return StopPlatform(b, true)
} else if targets[0] == swarm {
return StopSwarm(b)
}
}
outchan := make(chan string)
errchan := make(chan error)
var wg sync.WaitGroup
go printState(outchan, errchan, 500*time.Millisecond)
b.Stop(targets, &wg, outchan, errchan)
wg.Wait()
close(outchan)
close(errchan)
return nil
}
示例2: Stop
// Stop deactivates the specified components.
func Stop(targets []string, b backend.Backend) error {
// if target is platform, stop all services
if len(targets) == 1 {
switch targets[0] {
case PlatformCommand:
return StopPlatform(b, false)
case StatelessPlatformCommand:
return StopPlatform(b, true)
case mesos:
return StopMesos(b)
case swarm:
return StopSwarm(b)
case k8s:
return StopK8s(b)
}
}
var wg sync.WaitGroup
b.Stop(targets, &wg, Stdout, Stderr)
wg.Wait()
return nil
}
示例3: Stop
// Stop deactivates the specified components.
func Stop(argv []string, b backend.Backend) error {
usage := `Deactivates the specified components.
Usage:
deisctl stop [<target>...] [options]
`
// parse command-line arguments
args, err := docopt.Parse(usage, argv, true, "", false)
if err != nil {
return err
}
targets := args["<target>"].([]string)
// if target is platform, stop all services
if len(targets) == 1 && targets[0] == PlatformCommand {
return StopPlatform(b)
}
outchan := make(chan string)
errchan := make(chan error)
var wg sync.WaitGroup
go printState(outchan, errchan, 500*time.Millisecond)
b.Stop(targets, &wg, outchan, errchan)
wg.Wait()
close(outchan)
return nil
}
示例4: doUpgradeTakeOver
func doUpgradeTakeOver(stateless bool, b backend.Backend, cb config.Backend) error {
var wg sync.WaitGroup
nodes, err := listPublishedServices(cb)
if err != nil {
return err
}
b.Stop([]string{"publisher"}, &wg, Stdout, Stderr)
wg.Wait()
b.Destroy([]string{"publisher"}, &wg, Stdout, Stderr)
wg.Wait()
if err := republishServices(1800, nodes, cb); err != nil {
return err
}
b.RollingRestart("router", &wg, Stdout, Stderr)
wg.Wait()
b.Create([]string{"publisher"}, &wg, Stdout, Stderr)
wg.Wait()
b.Start([]string{"publisher"}, &wg, Stdout, Stderr)
wg.Wait()
installUpgradeServices(b, stateless, &wg, Stdout, Stderr)
wg.Wait()
startUpgradeServices(b, stateless, &wg, Stdout, Stderr)
wg.Wait()
return nil
}
示例5: UpgradePrep
// UpgradePrep stops and uninstalls all components except router and publisher
func UpgradePrep(stateless bool, b backend.Backend) error {
var wg sync.WaitGroup
b.Stop([]string{"database", "[email protected]*", "controller", "builder", "logger", "logspout"}, &wg, Stdout, Stderr)
wg.Wait()
b.Destroy([]string{"database", "[email protected]*", "controller", "builder", "logger", "logspout"}, &wg, Stdout, Stderr)
wg.Wait()
if !stateless {
b.Stop([]string{"store-volume", "[email protected]*"}, &wg, Stdout, Stderr)
wg.Wait()
b.Destroy([]string{"store-volume", "[email protected]*"}, &wg, Stdout, Stderr)
wg.Wait()
b.Stop([]string{"store-metadata"}, &wg, Stdout, Stderr)
wg.Wait()
b.Destroy([]string{"store-metadata"}, &wg, Stdout, Stderr)
wg.Wait()
b.Stop([]string{"store-daemon"}, &wg, Stdout, Stderr)
wg.Wait()
b.Destroy([]string{"store-daemon"}, &wg, Stdout, Stderr)
wg.Wait()
b.Stop([]string{"store-monitor"}, &wg, Stdout, Stderr)
wg.Wait()
b.Destroy([]string{"store-monitor"}, &wg, Stdout, Stderr)
wg.Wait()
}
fmt.Fprintln(Stdout, "The platform has been stopped, but applications are still serving traffic as normal.")
fmt.Fprintln(Stdout, "Your cluster is now ready for upgrade. Install a new deisctl version and run `deisctl upgrade-takeover`.")
fmt.Fprintln(Stdout, "For more details, see: http://docs.deis.io/en/latest/managing_deis/upgrading-deis/#graceful-upgrade")
return nil
}
示例6: StopSwarm
//StopSwarm stops swarm
func StopSwarm(b backend.Backend) error {
var wg sync.WaitGroup
io.WriteString(Stdout, prettyprint.DeisIfy("Stopping Swarm..."))
fmt.Fprintln(Stdout, "swarm nodes and swarm manager")
b.Stop([]string{"swarm-node", "swarm-manager"}, &wg, Stdout, Stderr)
wg.Wait()
fmt.Fprintln(Stdout, "Done.\n ")
return nil
}
示例7: StopSwarm
//StopSwarm stops swarm
func StopSwarm(b backend.Backend) error {
outchan := make(chan string)
errchan := make(chan error)
defer close(outchan)
defer close(errchan)
var wg sync.WaitGroup
go printState(outchan, errchan, 500*time.Millisecond)
outchan <- utils.DeisIfy("Stopping Swarm...")
outchan <- fmt.Sprintf("swarm nodes and swarm manager")
b.Stop([]string{"swarm-node", "swarm-manager"}, &wg, outchan, errchan)
wg.Wait()
fmt.Println("Done.")
fmt.Println()
return nil
}
示例8: stopMesosServices
func stopMesosServices(b backend.Backend, wg *sync.WaitGroup, out, err io.Writer) {
fmt.Fprintln(out, "Mesos/Marathon data plane...")
b.Stop([]string{"mesos-slave"}, wg, out, err)
wg.Wait()
fmt.Fprintln(out, "Mesos/Marathon control plane...")
b.Stop([]string{"mesos-marathon"}, wg, out, err)
wg.Wait()
b.Stop([]string{"mesos-master"}, wg, out, err)
wg.Wait()
b.Stop([]string{"zookeeper"}, wg, out, err)
wg.Wait()
}
示例9: StopK8s
//StopK8s stops K8s
func StopK8s(b backend.Backend) error {
var wg sync.WaitGroup
io.WriteString(Stdout, prettyprint.DeisIfy("Stopping K8s..."))
fmt.Fprintln(Stdout, "K8s router mesh...")
b.Stop([]string{"kube-proxy"}, &wg, Stdout, Stderr)
wg.Wait()
fmt.Fprintln(Stdout, "K8s data plane...")
b.Stop([]string{"kube-kubelet"}, &wg, Stdout, Stderr)
wg.Wait()
fmt.Fprintln(Stdout, "K8s control plane...")
b.Stop([]string{"kube-controller-manager", "kube-scheduler"}, &wg, Stdout, Stderr)
wg.Wait()
b.Stop([]string{"kube-apiserver"}, &wg, Stdout, Stderr)
wg.Wait()
fmt.Fprintln(Stdout, "Done.\n ")
return nil
}
示例10: stopMesosServices
func stopMesosServices(b backend.Backend, wg *sync.WaitGroup, out, err io.Writer) {
fmt.Fprintln(out, "Marathon Framework...")
b.Stop([]string{"mesos-marathon"}, wg, out, err)
wg.Wait()
fmt.Fprintln(out, "Mesos Slave...")
b.Stop([]string{"mesos-slave"}, wg, out, err)
wg.Wait()
fmt.Fprintln(out, "Mesos Master...")
b.Stop([]string{"mesos-master"}, wg, out, err)
wg.Wait()
fmt.Fprintln(out, "Zookeeper...")
b.Stop([]string{"zookeeper"}, wg, out, err)
wg.Wait()
}
示例11: stopDefaultServices
func stopDefaultServices(b backend.Backend, stateless bool, wg *sync.WaitGroup, out, err io.Writer) {
fmt.Fprintln(out, "Routing mesh...")
b.Stop([]string{"[email protected]*"}, wg, out, err)
wg.Wait()
fmt.Fprintln(out, "Data plane...")
b.Stop([]string{"publisher"}, wg, out, err)
wg.Wait()
fmt.Fprintln(out, "Control plane...")
if stateless {
b.Stop([]string{"controller", "builder", "[email protected]*"}, wg, out, err)
} else {
b.Stop([]string{"controller", "builder", "database", "[email protected]*"}, wg, out, err)
}
wg.Wait()
fmt.Fprintln(out, "Logging subsystem...")
if stateless {
b.Stop([]string{"logspout"}, wg, out, err)
} else {
b.Stop([]string{"logger", "logspout"}, wg, out, err)
}
wg.Wait()
if !stateless {
fmt.Fprintln(out, "Storage subsystem...")
b.Stop([]string{"store-volume", "[email protected]*"}, wg, out, err)
wg.Wait()
b.Stop([]string{"store-metadata"}, wg, out, err)
wg.Wait()
b.Stop([]string{"store-daemon"}, wg, out, err)
wg.Wait()
b.Stop([]string{"store-monitor"}, wg, out, err)
wg.Wait()
}
}
示例12: stopDefaultServices
func stopDefaultServices(b backend.Backend, wg *sync.WaitGroup, outchan chan string, errchan chan error) {
outchan <- fmt.Sprintf("Routing mesh...")
b.Stop([]string{"[email protected]", "[email protected]", "[email protected]"}, wg, outchan, errchan)
wg.Wait()
outchan <- fmt.Sprintf("Data plane...")
b.Stop([]string{"publisher"}, wg, outchan, errchan)
wg.Wait()
outchan <- fmt.Sprintf("Control plane...")
b.Stop([]string{"controller", "builder", "cache", "database", "registry"}, wg, outchan, errchan)
wg.Wait()
outchan <- fmt.Sprintf("Logging subsystem...")
b.Stop([]string{"logger", "logspout"}, wg, outchan, errchan)
wg.Wait()
outchan <- fmt.Sprintf("Storage subsystem...")
b.Stop([]string{"store-volume", "store-gateway"}, wg, outchan, errchan)
wg.Wait()
b.Stop([]string{"store-metadata"}, wg, outchan, errchan)
wg.Wait()
b.Stop([]string{"store-daemon"}, wg, outchan, errchan)
wg.Wait()
b.Stop([]string{"store-monitor"}, wg, outchan, errchan)
wg.Wait()
}