-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
cmd/microcloud: Add service list and service add
Signed-off-by: Max Asnaashari <[email protected]>
- Loading branch information
Showing
2 changed files
with
342 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,339 @@ | ||
package main | ||
|
||
import ( | ||
"context" | ||
"fmt" | ||
"net/http" | ||
"sort" | ||
"strings" | ||
"sync" | ||
|
||
"github.com/canonical/lxd/client" | ||
lxdAPI "github.com/canonical/lxd/shared/api" | ||
cli "github.com/canonical/lxd/shared/cmd" | ||
"github.com/canonical/microcluster/client" | ||
"github.com/canonical/microcluster/microcluster" | ||
"github.com/spf13/cobra" | ||
|
||
"github.com/canonical/microcloud/microcloud/api" | ||
"github.com/canonical/microcloud/microcloud/api/types" | ||
"github.com/canonical/microcloud/microcloud/mdns" | ||
"github.com/canonical/microcloud/microcloud/service" | ||
) | ||
|
||
type cmdServices struct { | ||
common *CmdControl | ||
} | ||
|
||
func (c *cmdServices) Command() *cobra.Command { | ||
cmd := &cobra.Command{ | ||
Use: "service", | ||
Short: "Manage MicroCloud services", | ||
RunE: func(cmd *cobra.Command, args []string) error { return cmd.Help() }, | ||
} | ||
|
||
var cmdServiceList = cmdServiceList{common: c.common} | ||
cmd.AddCommand(cmdServiceList.Command()) | ||
|
||
var cmdServiceAdd = cmdServiceAdd{common: c.common} | ||
cmd.AddCommand(cmdServiceAdd.Command()) | ||
|
||
return cmd | ||
} | ||
|
||
type cmdServiceList struct { | ||
common *CmdControl | ||
} | ||
|
||
func (c *cmdServiceList) Command() *cobra.Command { | ||
cmd := &cobra.Command{ | ||
Use: "list", | ||
Short: "List MicroCloud services and their cluster members", | ||
RunE: c.Run, | ||
} | ||
|
||
return cmd | ||
} | ||
|
||
func (c *cmdServiceList) Run(cmd *cobra.Command, args []string) error { | ||
if len(args) != 0 { | ||
return cmd.Help() | ||
} | ||
|
||
// Get a microcluster client so we can get state information. | ||
cloudApp, err := microcluster.App(microcluster.Args{StateDir: c.common.FlagMicroCloudDir}) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
// Fetch the name and address, and ensure we're initialized. | ||
status, err := cloudApp.Status(context.Background()) | ||
if err != nil { | ||
return fmt.Errorf("Failed to get MicroCloud status: %w", err) | ||
} | ||
|
||
if !status.Ready { | ||
return fmt.Errorf("MicroCloud is uninitialized, run 'microcloud init' first") | ||
} | ||
|
||
services := []types.ServiceType{types.MicroCloud, types.LXD} | ||
optionalServices := map[types.ServiceType]string{ | ||
types.MicroCeph: api.MicroCephDir, | ||
types.MicroOVN: api.MicroOVNDir, | ||
} | ||
|
||
cfg := initConfig{ | ||
bootstrap: false, | ||
common: c.common, | ||
asker: &c.common.asker, | ||
systems: map[string]InitSystem{}, | ||
state: map[string]service.SystemInformation{}, | ||
} | ||
|
||
cfg.name = status.Name | ||
cfg.address = status.Address.Addr().String() | ||
|
||
services, err = cfg.askMissingServices(services, optionalServices) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
// Instantiate a handler for the services. | ||
s, err := service.NewHandler(status.Name, status.Address.Addr().String(), c.common.FlagMicroCloudDir, c.common.FlagLogDebug, c.common.FlagLogVerbose, services...) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
mu := sync.Mutex{} | ||
header := []string{"NAME", "ADDRESS", "ROLE", "STATUS"} | ||
allClusters := map[types.ServiceType][][]string{} | ||
err = s.RunConcurrent(false, false, func(s service.Service) error { | ||
var err error | ||
var data [][]string | ||
var microClient *client.Client | ||
var lxd lxd.InstanceServer | ||
switch s.Type() { | ||
case types.LXD: | ||
lxd, err = s.(*service.LXDService).Client(context.Background(), "") | ||
case types.MicroCeph: | ||
microClient, err = s.(*service.CephService).Client("", "") | ||
case types.MicroOVN: | ||
microClient, err = s.(*service.OVNService).Client() | ||
case types.MicroCloud: | ||
microClient, err = s.(*service.CloudService).Client() | ||
} | ||
|
||
if err != nil { | ||
return err | ||
} | ||
|
||
if microClient != nil { | ||
clusterMembers, err := microClient.GetClusterMembers(context.Background()) | ||
if err != nil && !lxdAPI.StatusErrorCheck(err, http.StatusServiceUnavailable) { | ||
return err | ||
} | ||
|
||
if len(clusterMembers) != 0 { | ||
data = make([][]string, len(clusterMembers)) | ||
for i, clusterMember := range clusterMembers { | ||
data[i] = []string{clusterMember.Name, clusterMember.Address.String(), clusterMember.Role, string(clusterMember.Status)} | ||
} | ||
|
||
sort.Sort(cli.SortColumnsNaturally(data)) | ||
} | ||
} else if lxd != nil { | ||
server, _, err := lxd.GetServer() | ||
if err != nil { | ||
return err | ||
} | ||
|
||
if server.Environment.ServerClustered { | ||
clusterMembers, err := lxd.GetClusterMembers() | ||
if err != nil { | ||
return err | ||
} | ||
|
||
data = make([][]string, len(clusterMembers)) | ||
for i, clusterMember := range clusterMembers { | ||
data[i] = []string{clusterMember.ServerName, clusterMember.URL, strings.Join(clusterMember.Roles, "\n"), string(clusterMember.Status)} | ||
} | ||
|
||
sort.Sort(cli.SortColumnsNaturally(data)) | ||
} | ||
} | ||
|
||
mu.Lock() | ||
allClusters[s.Type()] = data | ||
mu.Unlock() | ||
|
||
return nil | ||
}) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
for serviceType, data := range allClusters { | ||
if len(data) == 0 { | ||
fmt.Printf("%s: Not initialized\n", serviceType) | ||
} else { | ||
fmt.Printf("%s:\n", serviceType) | ||
err = cli.RenderTable(cli.TableFormatTable, header, data, nil) | ||
if err != nil { | ||
return err | ||
} | ||
} | ||
} | ||
|
||
return nil | ||
} | ||
|
||
type cmdServiceAdd struct { | ||
common *CmdControl | ||
} | ||
|
||
func (c *cmdServiceAdd) Command() *cobra.Command { | ||
cmd := &cobra.Command{ | ||
Use: "add", | ||
Short: "Add new services to the existing MicroCloud", | ||
RunE: c.Run, | ||
} | ||
|
||
return cmd | ||
} | ||
|
||
func (c *cmdServiceAdd) Run(cmd *cobra.Command, args []string) error { | ||
if len(args) != 0 { | ||
return cmd.Help() | ||
} | ||
|
||
cfg := initConfig{ | ||
// Set bootstrap to true because we are setting up a new cluster for new services. | ||
bootstrap: true, | ||
common: c.common, | ||
asker: &c.common.asker, | ||
systems: map[string]InitSystem{}, | ||
state: map[string]service.SystemInformation{}, | ||
} | ||
|
||
// Get a microcluster client so we can get state information. | ||
cloudApp, err := microcluster.App(microcluster.Args{StateDir: c.common.FlagMicroCloudDir}) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
// Fetch the name and address, and ensure we're initialized. | ||
status, err := cloudApp.Status(context.Background()) | ||
if err != nil { | ||
return fmt.Errorf("Failed to get MicroCloud status: %w", err) | ||
} | ||
|
||
if !status.Ready { | ||
return fmt.Errorf("MicroCloud is uninitialized, run 'microcloud init' first") | ||
} | ||
|
||
cfg.name = status.Name | ||
cfg.address = status.Address.Addr().String() | ||
// enable auto setup to skip lookup related questions. | ||
cfg.autoSetup = true | ||
err = cfg.askAddress() | ||
if err != nil { | ||
return err | ||
} | ||
|
||
cfg.autoSetup = false | ||
services := []types.ServiceType{types.MicroCloud, types.LXD} | ||
optionalServices := map[types.ServiceType]string{ | ||
types.MicroCeph: api.MicroCephDir, | ||
types.MicroOVN: api.MicroOVNDir, | ||
} | ||
|
||
// Set the auto flag to true so that we automatically omit any services that aren't installed. | ||
services, err = cfg.askMissingServices(services, optionalServices) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
// Instantiate a handler for the services. | ||
s, err := service.NewHandler(cfg.name, cfg.address, c.common.FlagMicroCloudDir, c.common.FlagLogDebug, c.common.FlagLogVerbose, services...) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
state, err := s.CollectSystemInformation(context.Background(), mdns.ServerInfo{Name: cfg.name, Address: cfg.address, Services: services}) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
cfg.state[cfg.name] = *state | ||
// Create an InitSystem map to carry through the interactive setup. | ||
clusters := cfg.state[cfg.name].ExistingServices | ||
for name, address := range clusters[types.MicroCloud] { | ||
cfg.systems[name] = InitSystem{ | ||
ServerInfo: mdns.ServerInfo{ | ||
Name: name, | ||
Address: address, | ||
Services: services, | ||
}, | ||
} | ||
} | ||
|
||
for _, system := range cfg.systems { | ||
if system.ServerInfo.Name == "" || system.ServerInfo.Name == cfg.name { | ||
continue | ||
} | ||
|
||
state, err := s.CollectSystemInformation(context.Background(), system.ServerInfo) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
cfg.state[system.ServerInfo.Name] = *state | ||
} | ||
|
||
askClusteredServices := []types.ServiceType{} | ||
serviceMap := map[types.ServiceType]bool{} | ||
for _, state := range cfg.state { | ||
localState := cfg.state[s.Name] | ||
if len(state.ExistingServices[types.LXD]) != len(localState.ExistingServices[types.LXD]) || len(state.ExistingServices[types.LXD]) <= 0 { | ||
return fmt.Errorf("Unable to add services. Some systems are not part of the LXD cluster") | ||
} | ||
|
||
if len(state.ExistingServices[types.MicroCeph]) <= 0 && !serviceMap[types.MicroCeph] { | ||
askClusteredServices = append(askClusteredServices, types.MicroCeph) | ||
serviceMap[types.MicroCeph] = true | ||
} | ||
|
||
if len(state.ExistingServices[types.MicroOVN]) <= 0 && !serviceMap[types.MicroOVN] { | ||
askClusteredServices = append(askClusteredServices, types.MicroOVN) | ||
serviceMap[types.MicroOVN] = true | ||
} | ||
} | ||
|
||
if len(askClusteredServices) == 0 { | ||
return fmt.Errorf("All services have already been set up") | ||
} | ||
|
||
err = cfg.askClustered(s, askClusteredServices) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
// Go through the normal setup for disks and networks if necessary. | ||
for _, service := range askClusteredServices { | ||
switch service { | ||
case types.MicroCeph: | ||
err := cfg.askDisks(s) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
case types.MicroOVN: | ||
err := cfg.askNetwork(s) | ||
if err != nil { | ||
return err | ||
} | ||
} | ||
} | ||
|
||
return cfg.setupCluster(s) | ||
} |