support for a cluster.proto

This commit is contained in:
Jeff Carr 2025-03-24 21:54:35 -05:00
parent cf708182ac
commit 185a327d46
2 changed files with 7 additions and 7 deletions

View File

@ -14,7 +14,7 @@ import (
)
// import a libvirt xml file
func AddDomainDroplet(cluster *pb.Cluster, domcfg *libvirtxml.Domain) (*pb.Droplet, []*pb.Event, error) {
func AddDomainDroplet(cluster *pb.OldCluster, domcfg *libvirtxml.Domain) (*pb.Droplet, []*pb.Event, error) {
var alle []*pb.Event
if domcfg == nil {
return nil, alle, errors.New("domcfg == nil")
@ -46,7 +46,7 @@ func AddDomainDroplet(cluster *pb.Cluster, domcfg *libvirtxml.Domain) (*pb.Dropl
return d, alle, nil
}
func findDomain(c *pb.Cluster, domcfg *libvirtxml.Domain) (*pb.Droplet, error) {
func findDomain(c *pb.OldCluster, domcfg *libvirtxml.Domain) (*pb.Droplet, error) {
var found *pb.Droplet
if domcfg == nil {
return nil, errors.New("domcfg == nil")

View File

@ -22,7 +22,7 @@ var myClient cloudAPI
type CloudManager struct {
// client represents a hypothetical API client for interacting with the cloud.
client cloudAPI
cluster *virtpb.Cluster
cluster *virtpb.OldCluster
}
// cloudAPIt defines the methods required from the API client.
@ -62,7 +62,7 @@ func (m *CloudManager) FindDropletByName(name string) (*virtpb.Droplet, error) {
}
// Start initiates the startup process for the specified cluster.
func (m *CloudManager) Start(cluster *virtpb.Cluster) error {
func (m *CloudManager) Start(cluster *virtpb.OldCluster) error {
if cluster == nil {
return errors.New("cluster cannot be nil")
}
@ -76,7 +76,7 @@ func (m *CloudManager) Start(cluster *virtpb.Cluster) error {
}
// Stop halts the specified cluster.
func (m *CloudManager) Stop(cluster *virtpb.Cluster) error {
func (m *CloudManager) Stop(cluster *virtpb.OldCluster) error {
if cluster == nil {
return errors.New("cluster cannot be nil")
}
@ -90,7 +90,7 @@ func (m *CloudManager) Stop(cluster *virtpb.Cluster) error {
}
// List retrieves all available clusters.
func (m *CloudManager) List() ([]*virtpb.Cluster, error) {
func (m *CloudManager) List() ([]*virtpb.OldCluster, error) {
/*
clusters, err := m.client.ListClusters(ctx)
if err != nil {
@ -102,7 +102,7 @@ func (m *CloudManager) List() ([]*virtpb.Cluster, error) {
}
// Status checks the current status of a specified cluster.
func (m *CloudManager) Status(cluster *virtpb.Cluster) (string, error) {
func (m *CloudManager) Status(cluster *virtpb.OldCluster) (string, error) {
if cluster == nil {
return "", errors.New("cluster cannot be nil")
}