mirror of
				https://github.com/siderolabs/talos.git
				synced 2025-10-31 08:21:25 +01:00 
			
		
		
		
	See https://github.com/cosi-project/runtime/pull/191 Signed-off-by: Andrey Smirnov <andrey.smirnov@talos-systems.com>
		
			
				
	
	
		
			98 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			98 lines
		
	
	
		
			2.6 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 cluster
 | |
| 
 | |
| import (
 | |
| 	"context"
 | |
| 	"fmt"
 | |
| 	"net/netip"
 | |
| 	"reflect"
 | |
| 	"sort"
 | |
| 
 | |
| 	"github.com/cosi-project/runtime/pkg/controller"
 | |
| 	"github.com/cosi-project/runtime/pkg/resource"
 | |
| 	"go.uber.org/zap"
 | |
| 
 | |
| 	"github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1/machine"
 | |
| 	"github.com/siderolabs/talos/pkg/machinery/resources/cluster"
 | |
| 	"github.com/siderolabs/talos/pkg/machinery/resources/k8s"
 | |
| )
 | |
| 
 | |
| // EndpointController looks up control plane endpoints.
 | |
| type EndpointController struct{}
 | |
| 
 | |
| // Name implements controller.Controller interface.
 | |
| func (ctrl *EndpointController) Name() string {
 | |
| 	return "cluster.EndpointController"
 | |
| }
 | |
| 
 | |
| // Inputs implements controller.Controller interface.
 | |
| func (ctrl *EndpointController) Inputs() []controller.Input {
 | |
| 	return []controller.Input{
 | |
| 		{
 | |
| 			Namespace: cluster.NamespaceName,
 | |
| 			Type:      cluster.MemberType,
 | |
| 			Kind:      controller.InputWeak,
 | |
| 		},
 | |
| 	}
 | |
| }
 | |
| 
 | |
| // Outputs implements controller.Controller interface.
 | |
| func (ctrl *EndpointController) Outputs() []controller.Output {
 | |
| 	return []controller.Output{
 | |
| 		{
 | |
| 			Type: k8s.EndpointType,
 | |
| 			Kind: controller.OutputShared,
 | |
| 		},
 | |
| 	}
 | |
| }
 | |
| 
 | |
| // Run implements controller.Controller interface.
 | |
| func (ctrl *EndpointController) Run(ctx context.Context, r controller.Runtime, logger *zap.Logger) error {
 | |
| 	for {
 | |
| 		select {
 | |
| 		case <-ctx.Done():
 | |
| 			return nil
 | |
| 		case <-r.EventCh():
 | |
| 		}
 | |
| 
 | |
| 		memberList, err := r.List(ctx, resource.NewMetadata(cluster.NamespaceName, cluster.MemberType, "", resource.VersionUndefined))
 | |
| 		if err != nil {
 | |
| 			return fmt.Errorf("error listing members: %w", err)
 | |
| 		}
 | |
| 
 | |
| 		var endpoints []netip.Addr
 | |
| 
 | |
| 		for _, res := range memberList.Items {
 | |
| 			member := res.(*cluster.Member).TypedSpec()
 | |
| 
 | |
| 			if !(member.MachineType == machine.TypeControlPlane || member.MachineType == machine.TypeInit) {
 | |
| 				continue
 | |
| 			}
 | |
| 
 | |
| 			endpoints = append(endpoints, member.Addresses...)
 | |
| 		}
 | |
| 
 | |
| 		sort.Slice(endpoints, func(i, j int) bool { return endpoints[i].Compare(endpoints[j]) < 0 })
 | |
| 
 | |
| 		if err := r.Modify(ctx,
 | |
| 			k8s.NewEndpoint(k8s.ControlPlaneNamespaceName, k8s.ControlPlaneDiscoveredEndpointsID),
 | |
| 			func(r resource.Resource) error {
 | |
| 				if !reflect.DeepEqual(r.(*k8s.Endpoint).TypedSpec().Addresses, endpoints) {
 | |
| 					logger.Debug("updated controlplane endpoints", zap.Any("endpoints", endpoints))
 | |
| 				}
 | |
| 
 | |
| 				r.(*k8s.Endpoint).TypedSpec().Addresses = endpoints
 | |
| 
 | |
| 				return nil
 | |
| 			},
 | |
| 		); err != nil {
 | |
| 			return fmt.Errorf("error updating endpoints: %w", err)
 | |
| 		}
 | |
| 
 | |
| 		r.ResetRestartBackoff()
 | |
| 	}
 | |
| }
 |