check

package
v0.1.28 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Mar 12, 2026 License: MPL-2.0 Imports: 27 Imported by: 0

Documentation

Overview

Package check provides set of checks to verify cluster readiness.

Package check provides set of checks to verify cluster readiness.

Package check provides set of checks to verify cluster readiness.

Index

Constants

This section is empty.

Variables

View Source
var ErrServiceNotFound = errors.New("service not found")

ErrServiceNotFound is an error that indicates that a service was not found.

Functions

func AllNodesBootedAssertion

func AllNodesBootedAssertion(ctx context.Context, cluster ClusterInfo) error

AllNodesBootedAssertion checks whether nodes reached end of 'Boot' sequence.

func AllNodesDiskSizes

func AllNodesDiskSizes(ctx context.Context, cluster ClusterInfo) error

AllNodesDiskSizes checks that all nodes have enough disk space.

func AllNodesMemorySizes

func AllNodesMemorySizes(ctx context.Context, cluster ClusterInfo) error

AllNodesMemorySizes checks that all nodes have enough memory.

func ApidReadyAssertion

func ApidReadyAssertion(ctx context.Context, cluster ClusterInfo) error

ApidReadyAssertion checks whether apid is responsive on all the nodes.

func NewDiscoveredClusterInfo

func NewDiscoveredClusterInfo(members []*clussterres.Member) (cluster.Info, error)

NewDiscoveredClusterInfo returns a new cluster.Info populated from the discovery service.

func NoDiagnostics

func NoDiagnostics(ctx context.Context, cluster ClusterInfo) error

NoDiagnostics checks whether there are no diagnostic warnings.

func ServiceHealthAssertion

func ServiceHealthAssertion(ctx context.Context, cl ClusterInfo, service string, setters ...Option) error

ServiceHealthAssertion checks whether service reached some specified state.

func ServiceStateAssertion

func ServiceStateAssertion(ctx context.Context, cl ClusterInfo, service string, states ...string) error

ServiceStateAssertion checks whether service reached some specified state.

func Wait

func Wait(ctx context.Context, cluster ClusterInfo, checks []ClusterCheck, reporter Reporter) error

Wait run the checks against the cluster and waits for the full set to succeed.

Context ctx might have a timeout set to limit overall wait time. Each check might define its own timeout.

Types

type ClusterCheck

type ClusterCheck func(ClusterInfo) conditions.Condition

ClusterCheck implements a function which returns condition based on ClusterAccess.

func DefaultClusterChecks

func DefaultClusterChecks() []ClusterCheck

DefaultClusterChecks returns a set of default Chubo cluster readiness checks.

func ExtraClusterChecks

func ExtraClusterChecks() []ClusterCheck

ExtraClusterChecks returns a set of additional Chubo cluster readiness checks which work only for newer versions of Chubo.

ExtraClusterChecks can't be used reliably in upgrade tests, as older versions might not pass the checks.

func PreBootSequenceChecks

func PreBootSequenceChecks() []ClusterCheck

PreBootSequenceChecks returns a set of Chubo cluster readiness checks which are run before boot sequence.

type ClusterInfo

type ClusterInfo interface {
	cluster.ClientProvider
	cluster.Info
}

ClusterInfo is interface requires by checks.

type ConditionReporter

type ConditionReporter struct {
	// contains filtered or unexported fields
}

ConditionReporter is a reporter that reports conditions to a reporter.Reporter.

func StderrReporter

func StderrReporter() *ConditionReporter

StderrReporter returns console reporter with stderr output.

func (*ConditionReporter) Update

func (r *ConditionReporter) Update(condition conditions.Condition)

Update reports a condition to the reporter.

type DiscoveredClusterInfo

type DiscoveredClusterInfo struct {
	// contains filtered or unexported fields
}

DiscoveredClusterInfo represents a cluster.Info populated using the discovery service.

func (*DiscoveredClusterInfo) Nodes

func (d *DiscoveredClusterInfo) Nodes() []cluster.NodeInfo

Nodes returns list of all node infos.

func (*DiscoveredClusterInfo) NodesByType

func (d *DiscoveredClusterInfo) NodesByType(m machine.Type) []cluster.NodeInfo

NodesByType return list of node endpoints by type.

type Option

type Option func(o *Options) error

Option represents functional option.

func WithNodeTypes

func WithNodeTypes(t ...machine.Type) Option

WithNodeTypes sets the node types for a check.

type Options

type Options struct {
	Types []machine.Type
}

Options describes ClusterCheck parameters.

func DefaultOptions

func DefaultOptions() *Options

DefaultOptions returns the default options.

type Reporter

type Reporter interface {
	Update(condition conditions.Condition)
}

Reporter presents wait progress.

It is supposed that reporter drops duplicate messages.