mirror of
				https://github.com/siderolabs/talos.git
				synced 2025-10-31 16:31:13 +01:00 
			
		
		
		
	Add an extra field to extensions to store arbitrary info. Signed-off-by: Noel Georgi <git@frezbo.dev>
		
			
				
	
	
		
			33 lines
		
	
	
		
			688 B
		
	
	
	
		
			Protocol Buffer
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			688 B
		
	
	
	
		
			Protocol Buffer
		
	
	
		
			Executable File
		
	
	
	
	
| syntax = "proto3";
 | |
| 
 | |
| package talos.resource.definitions.extensions;
 | |
| 
 | |
| option go_package = "github.com/siderolabs/talos/pkg/machinery/api/resource/definitions/extensions";
 | |
| 
 | |
| // Compatibility describes extension compatibility.
 | |
| message Compatibility {
 | |
|   Constraint talos = 1;
 | |
| }
 | |
| 
 | |
| // Constraint describes compatibility constraint.
 | |
| message Constraint {
 | |
|   string version = 1;
 | |
| }
 | |
| 
 | |
| // Layer defines overlay mount layer.
 | |
| message Layer {
 | |
|   string image = 1;
 | |
|   Metadata metadata = 2;
 | |
| }
 | |
| 
 | |
| // Metadata describes base extension metadata.
 | |
| message Metadata {
 | |
|   string name = 1;
 | |
|   string version = 2;
 | |
|   string author = 3;
 | |
|   string description = 4;
 | |
|   Compatibility compatibility = 5;
 | |
|   string extra_info = 6;
 | |
| }
 | |
| 
 |