mirror of
https://github.com/siderolabs/talos.git
synced 2025-10-10 07:01:12 +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>
26 lines
677 B
Go
26 lines
677 B
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 providers
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
|
|
"github.com/talos-systems/talos/pkg/provision"
|
|
"github.com/talos-systems/talos/pkg/provision/providers/docker"
|
|
)
|
|
|
|
// Factory instantiates provision provider by name.
|
|
func Factory(ctx context.Context, name string) (provision.Provisioner, error) {
|
|
switch name {
|
|
case "docker":
|
|
return docker.NewProvisioner(ctx)
|
|
case "qemu":
|
|
return newQemu(ctx)
|
|
default:
|
|
return nil, fmt.Errorf("unsupported provisioner %q", name)
|
|
}
|
|
}
|