mirror of
				https://github.com/siderolabs/talos.git
				synced 2025-10-31 00:11:36 +01:00 
			
		
		
		
	This PR can be split into two parts: * controllers * apid binding into COSI world Controllers ----------- * `k8s.EndpointController` provides control plane endpoints on worker nodes (it isn't required for now on control plane nodes) * `secrets.RootController` now provides OS top-level secrets (CA cert) and secret configuration * `secrets.APIController` generates API secrets (certificates) in a bit different way for workers and control plane nodes: controlplane nodes generate directly, while workers reach out to `trustd` on control plane nodes via `k8s.Endpoint` resource apid Binding ------------ Resource `secrets.API` provides binding to protobuf by converting itself back and forth to protobuf spec. apid no longer receives machine configuration, instead it receives gRPC-backed socket to access Resource API. apid watches `secrets.API` resource, fetches certs and CA from it and uses that in its TLS configuration. Signed-off-by: Andrey Smirnov <smirnov.andrey@gmail.com>
		
			
				
	
	
		
			39 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
		
			1.0 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 k8s_test
 | |
| 
 | |
| import (
 | |
| 	"context"
 | |
| 	"testing"
 | |
| 
 | |
| 	"github.com/cosi-project/runtime/pkg/resource"
 | |
| 	"github.com/cosi-project/runtime/pkg/state"
 | |
| 	"github.com/cosi-project/runtime/pkg/state/impl/inmem"
 | |
| 	"github.com/cosi-project/runtime/pkg/state/impl/namespaced"
 | |
| 	"github.com/cosi-project/runtime/pkg/state/registry"
 | |
| 	"github.com/stretchr/testify/assert"
 | |
| 
 | |
| 	"github.com/talos-systems/talos/pkg/resources/k8s"
 | |
| )
 | |
| 
 | |
| func TestRegisterResource(t *testing.T) {
 | |
| 	ctx := context.TODO()
 | |
| 
 | |
| 	resources := state.WrapCore(namespaced.NewState(inmem.Build))
 | |
| 	resourceRegistry := registry.NewResourceRegistry(resources)
 | |
| 
 | |
| 	for _, resource := range []resource.Resource{
 | |
| 		&k8s.Endpoint{},
 | |
| 		&k8s.ManifestStatus{},
 | |
| 		&k8s.Manifest{},
 | |
| 		&k8s.Nodename{},
 | |
| 		&k8s.SecretsStatus{},
 | |
| 		&k8s.StaticPodStatus{},
 | |
| 		&k8s.StaticPod{},
 | |
| 	} {
 | |
| 		assert.NoError(t, resourceRegistry.Register(ctx, resource))
 | |
| 	}
 | |
| }
 |