mirror of
https://github.com/siderolabs/talos.git
synced 2025-10-09 14:41:31 +02:00
Note: Talos can be still run under `Firecracker`, support for Firecracker was only removed for `talosctl cluster create`. Reason: * code is untested/unmaintained, and probably doesn't work correctly * firecracker Go SDK pulls lots of dependencies and it blocks CNI Go module update Bonus: `talosctl-linux-amd64` shrinks by 2 MiB. Signed-off-by: Andrey Smirnov <andrey.smirnov@talos-systems.com>
64 lines
1.5 KiB
Go
64 lines
1.5 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/talos-systems/talos/pkg/provision"
|
|
"github.com/talos-systems/talos/pkg/provision/providers/vm"
|
|
)
|
|
|
|
// Destroy Talos cluster as set of qemu VMs.
|
|
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
|
|
}
|
|
}
|
|
|
|
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")
|
|
|
|
stateDirectoryPath, err := cluster.StatePath()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
return os.RemoveAll(stateDirectoryPath)
|
|
}
|