mirror of
				https://github.com/siderolabs/talos.git
				synced 2025-10-31 16:31:13 +01:00 
			
		
		
		
	There's a cyclic dependency on siderolink library which imports talos machinery back. We will fix that after we get talos pushed under a new name. Signed-off-by: Andrey Smirnov <andrey.smirnov@talos-systems.com>
		
			
				
	
	
		
			33 lines
		
	
	
		
			766 B
		
	
	
	
		
			Protocol Buffer
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			766 B
		
	
	
	
		
			Protocol Buffer
		
	
	
	
	
	
| syntax = "proto3";
 | |
| 
 | |
| package time;
 | |
| 
 | |
| option go_package = "github.com/siderolabs/talos/pkg/machinery/api/time";
 | |
| 
 | |
| import "common/common.proto";
 | |
| import "google/protobuf/empty.proto";
 | |
| import "google/protobuf/timestamp.proto";
 | |
| 
 | |
| // The time service definition.
 | |
| service TimeService {
 | |
|   rpc Time(google.protobuf.Empty) returns (TimeResponse);
 | |
|   rpc TimeCheck(TimeRequest) returns (TimeResponse);
 | |
| }
 | |
| 
 | |
| // The response message containing the ntp server
 | |
| message TimeRequest {
 | |
|   string server = 1;
 | |
| }
 | |
| 
 | |
| message Time {
 | |
|   common.Metadata metadata = 1;
 | |
|   string server = 2;
 | |
|   google.protobuf.Timestamp localtime = 3;
 | |
|   google.protobuf.Timestamp remotetime = 4;
 | |
| }
 | |
| 
 | |
| // The response message containing the ntp server, time, and offset
 | |
| message TimeResponse {
 | |
|   repeated Time messages = 1;
 | |
| }
 |