212 lines
5.5 KiB
Go
212 lines
5.5 KiB
Go
package apiprofile
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
|
|
apinode "github.com/hpcng/warewulf/internal/pkg/api/node"
|
|
"github.com/hpcng/warewulf/internal/pkg/api/routes/wwapiv1"
|
|
"github.com/hpcng/warewulf/internal/pkg/node"
|
|
"github.com/hpcng/warewulf/internal/pkg/util"
|
|
"github.com/hpcng/warewulf/internal/pkg/warewulfd"
|
|
"github.com/hpcng/warewulf/internal/pkg/wwlog"
|
|
"github.com/pkg/errors"
|
|
"gopkg.in/yaml.v2"
|
|
)
|
|
|
|
// NodeSet is the wwapiv1 implmentation for updating nodeinfo fields.
|
|
func ProfileSet(set *wwapiv1.ProfileSetParameter) (err error) {
|
|
if set == nil {
|
|
return fmt.Errorf("NodeAddParameter is nil")
|
|
}
|
|
|
|
var nodeDB node.NodeYaml
|
|
nodeDB, _, err = ProfileSetParameterCheck(set, false)
|
|
if err != nil {
|
|
return errors.Wrap(err, "Could not open database")
|
|
}
|
|
|
|
var pConf node.NodeConf
|
|
err = yaml.Unmarshal([]byte(set.NodeConfYaml), &pConf)
|
|
if err != nil {
|
|
wwlog.Error(fmt.Sprintf("%v", err.Error()))
|
|
return
|
|
}
|
|
dbError := apinode.DbSave(&nodeDB)
|
|
if util.InSlice(set.ProfileNames, "default") {
|
|
err = warewulfd.CopyShimGrub()
|
|
if err != nil {
|
|
wwlog.Warn("shim/grub couldn't be copied: %s", err)
|
|
}
|
|
}
|
|
return dbError
|
|
}
|
|
|
|
// ProfileSetParameterCheck does error checking on ProfileSetParameter.
|
|
// Output to the console if console is true.
|
|
// TODO: Determine if the console switch does wwlog or not.
|
|
// - console may end up being textOutput?
|
|
func ProfileSetParameterCheck(set *wwapiv1.ProfileSetParameter, console bool) (nodeDB node.NodeYaml, profileCount uint, err error) {
|
|
if set == nil {
|
|
err = fmt.Errorf("profile set parameter is nil")
|
|
if console {
|
|
fmt.Printf("%v\n", err)
|
|
return
|
|
}
|
|
}
|
|
|
|
if set.ProfileNames == nil {
|
|
err = fmt.Errorf("profile set parameter: ProfileNames is nil")
|
|
if console {
|
|
fmt.Printf("%v\n", err)
|
|
return
|
|
}
|
|
}
|
|
|
|
nodeDB, err = node.New()
|
|
if err != nil {
|
|
wwlog.Error("Could not open configuration: %s", err)
|
|
return
|
|
}
|
|
|
|
profiles, err := nodeDB.FindAllProfiles()
|
|
if err != nil {
|
|
wwlog.Error("Could not get profile list: %s", err)
|
|
return
|
|
}
|
|
|
|
// Note: This does not do expansion on the nodes.
|
|
|
|
if set.AllProfiles || (len(set.ProfileNames) == 0) {
|
|
if console {
|
|
fmt.Printf("\n*** WARNING: This command will modify all profiles! ***\n\n")
|
|
}
|
|
}
|
|
|
|
if len(profiles) == 0 {
|
|
if console {
|
|
fmt.Printf("No profiles found\n")
|
|
}
|
|
return
|
|
}
|
|
var pConf node.NodeConf
|
|
err = yaml.Unmarshal([]byte(set.NodeConfYaml), &pConf)
|
|
if err != nil {
|
|
wwlog.Error(fmt.Sprintf("%v", err.Error()))
|
|
return
|
|
}
|
|
|
|
for _, p := range profiles {
|
|
if util.InSlice(set.ProfileNames, p.Id.Get()) {
|
|
wwlog.Verbose("Evaluating profile: %s", p.Id.Get())
|
|
p.SetFrom(&pConf)
|
|
if set.NetdevDelete != "" {
|
|
if _, ok := p.NetDevs[set.NetdevDelete]; !ok {
|
|
err = fmt.Errorf("network device name doesn't exist: %s", set.NetdevDelete)
|
|
wwlog.Error(fmt.Sprintf("%v", err.Error()))
|
|
return
|
|
}
|
|
wwlog.Verbose("Profile: %s, Deleting network device: %s", p.Id.Get(), set.NetdevDelete)
|
|
delete(p.NetDevs, set.NetdevDelete)
|
|
}
|
|
if set.PartitionDelete != "" {
|
|
deletedPart := false
|
|
for diskname, disk := range p.Disks {
|
|
if _, ok := disk.Partitions[set.PartitionDelete]; ok {
|
|
wwlog.Verbose("Node: %s, on disk %, deleting partition: %s", p.Id.Get(), diskname, set.PartitionDelete)
|
|
deletedPart = true
|
|
delete(disk.Partitions, set.PartitionDelete)
|
|
}
|
|
if !deletedPart {
|
|
wwlog.Error(fmt.Sprintf("%v", err.Error()))
|
|
err = fmt.Errorf("partition doesn't exist: %s", set.PartitionDelete)
|
|
return
|
|
}
|
|
}
|
|
}
|
|
if set.DiskDelete != "" {
|
|
if _, ok := p.Disks[set.DiskDelete]; !ok {
|
|
err = fmt.Errorf("disk doesn't exist: %s", set.DiskDelete)
|
|
wwlog.Error(fmt.Sprintf("%v", err.Error()))
|
|
return
|
|
}
|
|
wwlog.Verbose("Node: %s, deleting disk: %s", p.Id.Get(), set.DiskDelete)
|
|
delete(p.Disks, set.DiskDelete)
|
|
}
|
|
if set.FilesystemDelete != "" {
|
|
if _, ok := p.FileSystems[set.FilesystemDelete]; !ok {
|
|
err = fmt.Errorf("disk doesn't exist: %s", set.FilesystemDelete)
|
|
wwlog.Error(fmt.Sprintf("%v", err.Error()))
|
|
return
|
|
}
|
|
wwlog.Verbose("Node: %s, deleting filesystem: %s", p.Id.Get(), set.FilesystemDelete)
|
|
delete(p.FileSystems, set.FilesystemDelete)
|
|
}
|
|
|
|
for _, key := range pConf.TagsDel {
|
|
delete(p.Tags, key)
|
|
}
|
|
for _, key := range pConf.Ipmi.TagsDel {
|
|
delete(p.Ipmi.Tags, key)
|
|
}
|
|
for net := range pConf.NetDevs {
|
|
for _, key := range pConf.NetDevs[net].TagsDel {
|
|
if _, ok := p.NetDevs[net]; ok {
|
|
delete(p.NetDevs[net].Tags, key)
|
|
}
|
|
}
|
|
}
|
|
err := nodeDB.ProfileUpdate(p)
|
|
if err != nil {
|
|
wwlog.Error("%s", err)
|
|
os.Exit(1)
|
|
}
|
|
|
|
profileCount++
|
|
}
|
|
}
|
|
return
|
|
}
|
|
|
|
/*
|
|
Adds a new profile with the given name
|
|
*/
|
|
|
|
func AddProfile(nsp *wwapiv1.ProfileSetParameter) error {
|
|
if nsp == nil {
|
|
return fmt.Errorf("NodeSetParameter is nill")
|
|
}
|
|
|
|
nodeDB, err := node.New()
|
|
if err != nil {
|
|
return errors.Wrap(err, "Could not open database")
|
|
}
|
|
|
|
if util.InSlice(nodeDB.ListAllProfiles(), nsp.ProfileNames[0]) {
|
|
return errors.New(fmt.Sprintf("profile with name %s allready exists", nsp.ProfileNames[0]))
|
|
}
|
|
|
|
var nodeConf node.NodeConf
|
|
err = yaml.Unmarshal([]byte(nsp.NodeConfYaml), &nodeConf)
|
|
if err != nil {
|
|
return errors.Wrap(err, "failed to decode nodeConf")
|
|
}
|
|
|
|
n, err := nodeDB.AddProfile(nsp.ProfileNames[0])
|
|
if err != nil {
|
|
return errors.Wrap(err, "failed to add node")
|
|
}
|
|
n.SetFrom(&nodeConf)
|
|
|
|
err = nodeDB.ProfileUpdate(n)
|
|
if err != nil {
|
|
return errors.Wrap(err, "failed to update nodedb")
|
|
}
|
|
|
|
err = nodeDB.Persist()
|
|
if err != nil {
|
|
return errors.Wrap(err, "failed to persist new profile")
|
|
}
|
|
return nil
|
|
}
|