Documentation ¶
Overview ¶
Package runtime defines interfaces for accessing runtime specific settings, and state.
Index ¶
- Variables
- func IsRebootError(err error) bool
- type Board
- type ClusterState
- type Controller
- type ControllerOption
- type ControllerOptions
- type Event
- type EventFatalSequencerError
- type EventSequenceStart
- type EventStream
- type LogHandler
- type LogOption
- type LogOptions
- type LoggingManager
- type Machine
- type MachineState
- type Mode
- type ModeCapability
- type PartitionOptions
- type PartitionTarget
- type Phase
- type Platform
- type Publisher
- type RebootError
- type ResetOptions
- type Runtime
- type Sequence
- type Sequencer
- type State
- type TaskExecutionFunc
- type TaskSetupFunc
- type V1Alpha2Controller
- type V1Alpha2State
- type WatchFunc
- type WatchOptionFunc
- type WatchOptions
- type Watcher
Constants ¶
This section is empty.
Variables ¶
var ( // ErrLocked indicates that the sequencer is currently locked, and processing // another sequence. ErrLocked = errors.New("locked") // ErrInvalidSequenceData indicates that the sequencer got data the wrong // data type for a sequence. ErrInvalidSequenceData = errors.New("invalid sequence data") // ErrUndefinedRuntime indicates that the sequencer's runtime is not defined. ErrUndefinedRuntime = errors.New("undefined runtime") )
Functions ¶
func IsRebootError ¶ added in v0.8.2
IsRebootError checks whether given error is RebootError.
Types ¶
type Board ¶ added in v0.8.0
type Board interface { Name() string Install(string) error KernelArgs() procfs.Parameters PartitionOptions() *PartitionOptions }
Board defines the requirements for a SBC.
type Controller ¶
type Controller interface { Runtime() Runtime Sequencer() Sequencer Run(context.Context, Sequence, interface{}, ...ControllerOption) error V1Alpha2() V1Alpha2Controller }
Controller represents the controller responsible for managing the execution of sequences.
type ControllerOption ¶ added in v0.6.0
type ControllerOption func(o *ControllerOptions) error
ControllerOption represents an option setter.
func WithForce ¶ added in v0.6.0
func WithForce() ControllerOption
WithForce sets the force option to true.
func WithTakeover ¶ added in v0.9.0
func WithTakeover() ControllerOption
WithTakeover sets the take option to true.
type ControllerOptions ¶ added in v0.6.0
ControllerOptions represents the options for a controller.
func DefaultControllerOptions ¶ added in v0.6.0
func DefaultControllerOptions() ControllerOptions
DefaultControllerOptions returns the default controller options.
type EventFatalSequencerError ¶
EventFatalSequencerError represents a fatal sequencer error.
type EventSequenceStart ¶
type EventSequenceStart struct {
Sequence Sequence
}
EventSequenceStart represents the sequence start event.
type EventStream ¶
EventStream defines the runtime event stream.
type LogHandler ¶ added in v0.6.0
type LogHandler interface { Writer() (io.WriteCloser, error) Reader(opt ...LogOption) (io.ReadCloser, error) }
LogHandler provides interface to access particular log file.
type LogOption ¶ added in v0.6.0
type LogOption func(*LogOptions) error
LogOption provides functional options for LogHandler.Reader.
func WithFollow ¶ added in v0.6.0
func WithFollow() LogOption
WithFollow enables follow mode for the logs.
func WithTailLines ¶ added in v0.6.0
WithTailLines starts log reading from lines from the tail of the log.
type LogOptions ¶ added in v0.6.0
LogOptions for LogHandler.Reader.
type LoggingManager ¶ added in v0.6.0
type LoggingManager interface {
ServiceLog(service string) LogHandler
}
LoggingManager provides unified interface to publish and consume logs.
type Machine ¶
type Machine interface { State() MachineState Config() config.MachineConfig }
Machine defines the runtime parameters.
type MachineState ¶
type MachineState interface { Disk(options ...disk.Option) *probe.ProbedBlockDevice Close() error Installed() bool IsInstallStaged() bool StagedInstallImageRef() string StagedInstallOptions() []byte }
MachineState defines the machined state.
type Mode ¶
type Mode int
Mode is a runtime mode.
func (Mode) RequiresInstall ¶ added in v0.6.0
RequiresInstall implements config.RuntimeMode.
func (Mode) Supports ¶ added in v0.7.0
func (m Mode) Supports(feature ModeCapability) bool
Supports returns mode capability.
type ModeCapability ¶ added in v0.7.0
type ModeCapability uint64
ModeCapability describes mode capability flags.
const ( // Reboot node reboot. Reboot ModeCapability = 1 << iota // Rollback node rollback. Rollback // Shutdown node shutdown. Shutdown // Upgrade node upgrade. Upgrade )
type PartitionOptions ¶ added in v0.8.0
type PartitionOptions struct {
PartitionsOffset uint64
}
PartitionOptions are the board specific options for customizing the partition table.
type PartitionTarget ¶ added in v0.8.0
PartitionTarget provides interface to the disk partition.
type Phase ¶
type Phase struct { Name string Tasks []TaskSetupFunc }
Phase represents a collection of tasks to be performed concurrently.
type Platform ¶
type Platform interface { Name() string Configuration(context.Context) ([]byte, error) Hostname(context.Context) ([]byte, error) Mode() Mode ExternalIPs(context.Context) ([]net.IP, error) KernelArgs() procfs.Parameters }
Platform defines the requirements for a platform.
type RebootError ¶ added in v0.8.2
type RebootError struct {
Cmd int
}
RebootError encapsulates unix.Reboot() cmd argument.
func (RebootError) Error ¶ added in v0.8.2
func (e RebootError) Error() string
type ResetOptions ¶ added in v0.8.0
type ResetOptions interface { GetGraceful() bool GetReboot() bool GetSystemDiskTargets() []PartitionTarget }
ResetOptions are parameters to Reset sequence.
type Runtime ¶
type Runtime interface { Config() config.Provider ValidateConfig([]byte) (config.Provider, error) SetConfig([]byte) error CanApplyImmediate([]byte) error State() State Events() EventStream Logging() LoggingManager NodeName() (string, error) }
Runtime defines the runtime parameters.
type Sequence ¶
type Sequence int
Sequence represents a sequence type.
const ( // SequenceApplyConfiguration is the apply configuration sequence. SequenceApplyConfiguration Sequence = iota // SequenceBoot is the boot sequence. SequenceBoot // SequenceBootstrap is the boot sequence. SequenceBootstrap // SequenceInitialize is the initialize sequence. SequenceInitialize // SequenceInstall is the install sequence. SequenceInstall // SequenceShutdown is the shutdown sequence. SequenceShutdown // SequenceUpgrade is the upgrade sequence. SequenceUpgrade // SequenceStageUpgrade is the stage upgrade sequence. SequenceStageUpgrade // SequenceReset is the reset sequence. SequenceReset // SequenceReboot is the reboot sequence. SequenceReboot // SequenceNoop is the noop sequence. SequenceNoop )
func ParseSequence ¶
ParseSequence returns a `Sequence` that matches the specified string.
type Sequencer ¶
type Sequencer interface { ApplyConfiguration(Runtime, *machine.ApplyConfigurationRequest) []Phase Boot(Runtime) []Phase Bootstrap(Runtime) []Phase Initialize(Runtime) []Phase Install(Runtime) []Phase Reboot(Runtime) []Phase Reset(Runtime, ResetOptions) []Phase Shutdown(Runtime) []Phase StageUpgrade(Runtime, *machine.UpgradeRequest) []Phase Upgrade(Runtime, *machine.UpgradeRequest) []Phase }
Sequencer describes the set of sequences required for the lifecycle management of the operating system.
type State ¶
type State interface { Platform() Platform Machine() MachineState Cluster() ClusterState V1Alpha2() V1Alpha2State }
State defines the state.
type TaskExecutionFunc ¶
TaskExecutionFunc defines the function that a task will execute for a specific runtime mode.
type TaskSetupFunc ¶
type TaskSetupFunc func(seq Sequence, data interface{}) (TaskExecutionFunc, string)
TaskSetupFunc defines the function that a task will execute for a specific runtime mode.
type V1Alpha2Controller ¶ added in v0.9.0
type V1Alpha2Controller interface { Run(context.Context) error DependencyGraph() (*controller.DependencyGraph, error) }
V1Alpha2Controller provides glue into v2alpha1 controller runtime.
type V1Alpha2State ¶ added in v0.9.0
type V1Alpha2State interface { Resources() state.State NamespaceRegistry() *registry.NamespaceRegistry ResourceRegistry() *registry.ResourceRegistry SetConfig(config.Provider) error }
V1Alpha2State defines the next generation (v2) interface binding into v1 runtime.
type WatchOptionFunc ¶ added in v0.6.0
type WatchOptionFunc func(opts *WatchOptions) error
WatchOptionFunc defines the options for the watcher.
func WithTailDuration ¶ added in v0.6.0
func WithTailDuration(dur time.Duration) WatchOptionFunc
WithTailDuration sets up Watcher to return events with timestamp >= (now - tailDuration).
func WithTailEvents ¶ added in v0.6.0
func WithTailEvents(number int) WatchOptionFunc
WithTailEvents sets up Watcher to return specified number of past events.
If number is negative, all the available past events are returned.
func WithTailID ¶ added in v0.6.0
func WithTailID(id xid.ID) WatchOptionFunc
WithTailID sets up Watcher to return events with ID > TailID.
type WatchOptions ¶ added in v0.6.0
type WatchOptions struct { // Return that many past events. // // If TailEvents is negative, return all the events available. TailEvents int // Start at ID > specified. TailID xid.ID // Start at timestamp Now() - TailDuration. TailDuration time.Duration }
WatchOptions defines options for the watch call.
Only one of TailEvents, TailID or TailDuration should be non-zero.
type Watcher ¶
type Watcher interface {
Watch(WatchFunc, ...WatchOptionFunc) error
}
Watcher defines a runtime event watcher.
Source Files ¶
Directories ¶
Path | Synopsis |
---|---|
Package disk contains abstract utility function to filter disks in MachineState.Disk call.
|
Package disk contains abstract utility function to filter disks in MachineState.Disk call. |
Package logging provides implementations of runtime.LoggingManager.
|
Package logging provides implementations of runtime.LoggingManager. |
Package v1alpha1 implements a `Runtime`.
|
Package v1alpha1 implements a `Runtime`. |
bootloader/adv
Package adv provides common interfaces to access ADV data.
|
Package adv provides common interfaces to access ADV data. |
bootloader/adv/syslinux
Package syslinux provides syslinux-compatible ADV data.
|
Package syslinux provides syslinux-compatible ADV data. |
bootloader/adv/talos
Package talos implements modern ADV which supports large size for the values and tags.
|
Package talos implements modern ADV which supports large size for the values and tags. |
Package v1alpha2 provides runtime implementation based on os-runtime.
|
Package v1alpha2 provides runtime implementation based on os-runtime. |