feat(machine): sync machine arch, daemon and docker versions to store, sync machine info on schedule

This commit is contained in:
Pasha Sviderski
2026-06-22 19:47:35 +10:00
parent 69acf6f58e
commit 8b95db66d1
7 changed files with 448 additions and 261 deletions
+7 -1
View File
@@ -36,8 +36,14 @@ message MachineInfo {
string name = 2;
NetworkConfig network = 3;
IP public_ip = 4;
// Operating system hostname of the machine.
// Operating system hostname.
string hostname = 5;
// CPU architecture.
string arch = 6;
// Version of the machine daemon (uncloudd).
string daemon_version = 7;
// Version of the Docker engine running on the machine. Could be empty if unable to get.
string docker_version = 8;
}
message NetworkConfig {