mirror of
				https://github.com/siderolabs/talos.git
				synced 2025-10-31 08:21:25 +01:00 
			
		
		
		
	This resource holds aggregated network status which can be easily used in various places to wait for the network to reach some desired state. The state checks are simple right now, we might improve the logic to make sure all the configured network subsystems reached defined state, but this might come later as we refine the logic (e.g. to make sure that all static configuration got applied, etc.) Signed-off-by: Andrey Smirnov <smirnov.andrey@gmail.com>
		
			
				
	
	
		
			79 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			79 lines
		
	
	
		
			1.9 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 network
 | |
| 
 | |
| import (
 | |
| 	"context"
 | |
| 
 | |
| 	"github.com/cosi-project/runtime/pkg/resource"
 | |
| 	"github.com/cosi-project/runtime/pkg/state"
 | |
| )
 | |
| 
 | |
| // ReadyCondition implements condition which waits for the network to be ready.
 | |
| type ReadyCondition struct {
 | |
| 	state  state.State
 | |
| 	checks []StatusCheck
 | |
| }
 | |
| 
 | |
| // NewReadyCondition builds a coondition which waits for the network to be ready.
 | |
| func NewReadyCondition(state state.State, checks ...StatusCheck) *ReadyCondition {
 | |
| 	return &ReadyCondition{
 | |
| 		state:  state,
 | |
| 		checks: checks,
 | |
| 	}
 | |
| }
 | |
| 
 | |
| func (condition *ReadyCondition) String() string {
 | |
| 	return "network"
 | |
| }
 | |
| 
 | |
| // Wait implements condition interface.
 | |
| func (condition *ReadyCondition) Wait(ctx context.Context) error {
 | |
| 	_, err := condition.state.WatchFor(
 | |
| 		ctx,
 | |
| 		resource.NewMetadata(NamespaceName, StatusType, StatusID, resource.VersionUndefined),
 | |
| 		state.WithCondition(func(r resource.Resource) (bool, error) {
 | |
| 			if resource.IsTombstone(r) {
 | |
| 				return false, nil
 | |
| 			}
 | |
| 
 | |
| 			status := r.(*Status).TypedSpec()
 | |
| 
 | |
| 			for _, check := range condition.checks {
 | |
| 				if !check(status) {
 | |
| 					return false, nil
 | |
| 				}
 | |
| 			}
 | |
| 
 | |
| 			return true, nil
 | |
| 		}),
 | |
| 	)
 | |
| 
 | |
| 	return err
 | |
| }
 | |
| 
 | |
| // StatusCheck asserts specific part of Status to be true.
 | |
| type StatusCheck func(*StatusSpec) bool
 | |
| 
 | |
| // AddressReady checks if address is ready.
 | |
| func AddressReady(spec *StatusSpec) bool {
 | |
| 	return spec.AddressReady
 | |
| }
 | |
| 
 | |
| // ConnectivityReady checks if connectivity is ready.
 | |
| func ConnectivityReady(spec *StatusSpec) bool {
 | |
| 	return spec.ConnectivityReady
 | |
| }
 | |
| 
 | |
| // HostnameReady checks if hostname is ready.
 | |
| func HostnameReady(spec *StatusSpec) bool {
 | |
| 	return spec.HostnameReady
 | |
| }
 | |
| 
 | |
| // EtcFilesReady checks if etc files are ready.
 | |
| func EtcFilesReady(spec *StatusSpec) bool {
 | |
| 	return spec.EtcFilesReady
 | |
| }
 |