Skip to content
Closed
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
.build
*.swp
.vscode
18 changes: 14 additions & 4 deletions proto/spire/api/server/agent/v1/agent.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions proto/spire/api/server/agent/v1/agent.proto
Original file line number Diff line number Diff line change
Expand Up @@ -226,6 +226,9 @@ message AgentX509SVIDParams {
message PostStatusRequest {
// Required. Serial number of the bundle currently being served by the agent
uint64 current_bundle_serial = 1;

// Optional. The version of the agent.
string agent_version = 2;
}

message PostStatusResponse {
Expand Down
30 changes: 25 additions & 5 deletions proto/spire/api/types/agent.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions proto/spire/api/types/agent.proto
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@ message Agent {

// Output only. Whether or not the agent can re-attest.
bool can_reattest = 7;

// Output only. Optional. The version of the agent.
string agent_version = 8;
}

message AgentMask {
Expand All @@ -47,4 +50,7 @@ message AgentMask {

// can_reattest field mask
bool can_reattest = 7;

// agent_version field mask
bool agent_version = 8;
}