mirror of
https://github.com/siderolabs/talos.git
synced 2025-10-22 13:01:38 +02:00
- Added common.proto to host NodeMetadata - go_package names were fixed up so imports are generated with the proper package names - fixed up build work (dockerfile) to prevent copying the previously generated go proto files. This fixes a bug where we could incorrectly copy the previously generated protobuf instead of a new one generated at an incorrect location/name/etc. Signed-off-by: Brad Beam <brad.beam@talos-systems.com>
11 lines
212 B
Protocol Buffer
11 lines
212 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package common;
|
|
|
|
option go_package = "github.com/talos-systems/talos/api/common";
|
|
|
|
// Common metadata message nested in all reply message types
|
|
message NodeMetadata {
|
|
string hostname = 1;
|
|
}
|