Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions proto/agynio/api/agents/v1/agents.proto
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,10 @@ message Agent {
// definition instead of each carrying its own copy.
string image = 7 [deprecated = true];
ComputeResources resources = 8 [deprecated = true];
string init_image = 9;
// Superseded by the environment's agent_runtime_image_id. Nothing reads this:
// the orchestrator refuses a workload whose environment names no runtime
// rather than substituting an agent-supplied image.
string init_image = 9 [deprecated = true];
string organization_id = 10;
string nickname = 11;
optional string idle_timeout = 12; // Go duration string (e.g., "30s", "5m", "1h").
Expand Down Expand Up @@ -281,7 +284,7 @@ message CreateAgentRequest {
string image = 6 [deprecated = true];
ComputeResources resources = 7 [deprecated = true];
string organization_id = 8;
string init_image = 9;
string init_image = 9 [deprecated = true];
string nickname = 10;
optional string idle_timeout = 11; // Go duration string (e.g., "30s", "5m", "1h").
// Capabilities supported by this agent. Free-form strings (e.g., "privileged", "dind").
Expand Down Expand Up @@ -329,7 +332,7 @@ message UpdateAgentRequest {
optional string configuration = 6;
optional string image = 7 [deprecated = true];
optional ComputeResources resources = 8 [deprecated = true];
optional string init_image = 9;
optional string init_image = 9 [deprecated = true];
optional string nickname = 10;
optional string idle_timeout = 11; // Go duration string (e.g., "30s", "5m", "1h").
// Capabilities replace the existing list; an empty list clears all capabilities.
Expand Down
Loading