mirror of
https://github.com/siderolabs/talos.git
synced 2025-10-08 22:21:16 +02:00
This is handy when the node with qemu went down, so you had to manually delete the folder after it restarted. Signed-off-by: Dmitriy Matrenichev <dmitry.matrenichev@siderolabs.com>
79 lines
1.8 KiB
Go
79 lines
1.8 KiB
Go
// This Source Code Form is subject to the terms of the Mozilla Public
|
|
// License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
package qemu
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"os"
|
|
|
|
"github.com/siderolabs/talos/pkg/provision"
|
|
"github.com/siderolabs/talos/pkg/provision/providers/vm"
|
|
)
|
|
|
|
// Destroy Talos cluster as set of qemu VMs.
|
|
//
|
|
//nolint:gocyclo
|
|
func (p *provisioner) Destroy(ctx context.Context, cluster provision.Cluster, opts ...provision.Option) error {
|
|
options := provision.DefaultOptions()
|
|
|
|
for _, opt := range opts {
|
|
if err := opt(&options); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
|
|
complete := false
|
|
deleteStateDirectory := func(shouldDelete bool) error {
|
|
if complete || !shouldDelete {
|
|
return nil
|
|
}
|
|
|
|
complete = true
|
|
|
|
stateDirectoryPath, err := cluster.StatePath()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
return os.RemoveAll(stateDirectoryPath)
|
|
}
|
|
|
|
defer deleteStateDirectory(options.DeleteStateOnErr) //nolint:errcheck
|
|
|
|
fmt.Fprintln(options.LogWriter, "stopping VMs")
|
|
|
|
if err := p.DestroyNodes(cluster.Info(), &options); err != nil {
|
|
return err
|
|
}
|
|
|
|
state, ok := cluster.(*vm.State)
|
|
if !ok {
|
|
return fmt.Errorf("error inspecting QEMU state, %#+v", cluster)
|
|
}
|
|
|
|
fmt.Fprintln(options.LogWriter, "removing dhcpd")
|
|
|
|
if err := p.DestroyDHCPd(state); err != nil {
|
|
return fmt.Errorf("error stopping dhcpd: %w", err)
|
|
}
|
|
|
|
fmt.Fprintln(options.LogWriter, "removing load balancer")
|
|
|
|
if err := p.DestroyLoadBalancer(state); err != nil {
|
|
return fmt.Errorf("error stopping loadbalancer: %w", err)
|
|
}
|
|
|
|
fmt.Fprintln(options.LogWriter, "removing network")
|
|
|
|
if err := p.DestroyNetwork(state); err != nil {
|
|
return err
|
|
}
|
|
|
|
fmt.Fprintln(options.LogWriter, "removing state directory")
|
|
|
|
return deleteStateDirectory(true)
|
|
}
|