Andrey Smirnov 018086d1fa refactor: extract blockdevice library
Library `blockdevice` was extracted as `talos-systems/go-blockdevice`,
this PR finalizes the move by removing Talos copy of it.

Some functions around `mkfs`/`growfs` were extracted as `makefs`
package, as they depend on `cmd` package.

Signed-off-by: Andrey Smirnov <smirnov.andrey@gmail.com>
2020-10-05 11:18:43 -07:00

35 lines
812 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 runtime
import (
"github.com/talos-systems/go-blockdevice/blockdevice/probe"
"github.com/talos-systems/talos/pkg/machinery/config"
)
// State defines the state.
type State interface {
Platform() Platform
Machine() MachineState
Cluster() ClusterState
}
// Machine defines the runtime parameters.
type Machine interface {
State() MachineState
Config() config.MachineConfig
}
// MachineState defines the machined state.
type MachineState interface {
Disk() *probe.ProbedBlockDevice
Close() error
Installed() bool
}
// ClusterState defines the cluster state.
type ClusterState interface{}