mirror of
				https://github.com/siderolabs/talos.git
				synced 2025-10-31 00:11:36 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			26 lines
		
	
	
		
			577 B
		
	
	
	
		
			Protocol Buffer
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			577 B
		
	
	
	
		
			Protocol Buffer
		
	
	
		
			Executable File
		
	
	
	
	
| syntax = "proto3";
 | |
| 
 | |
| package talos.resource.definitions.siderolink;
 | |
| 
 | |
| option go_package = "github.com/siderolabs/talos/pkg/machinery/api/resource/definitions/siderolink";
 | |
| 
 | |
| import "common/common.proto";
 | |
| 
 | |
| // ConfigSpec describes Siderolink configuration.
 | |
| message ConfigSpec {
 | |
|   string api_endpoint = 1;
 | |
|   string host = 2;
 | |
|   string join_token = 3;
 | |
|   bool insecure = 4;
 | |
|   bool tunnel = 5;
 | |
| }
 | |
| 
 | |
| // TunnelSpec describes Siderolink GRPC Tunnel configuration.
 | |
| message TunnelSpec {
 | |
|   string api_endpoint = 1;
 | |
|   string link_name = 2;
 | |
|   int64 mtu = 3;
 | |
|   common.NetIPPort node_address = 4;
 | |
| }
 | |
| 
 |