Skip to content

Commit

Permalink
TODO: S + regen protobiuf
Browse files Browse the repository at this point in the history
  • Loading branch information
kleesc committed Sep 11, 2020
1 parent 4b9098d commit 47978a3
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions buildman/buildman_pb/buildman.proto
Expand Up @@ -39,6 +39,12 @@ message BuildPack {
string pull_token = 8;
string push_token = 9;
repeated string tag_names = 10;
BaseImage base_image = 11;

message BaseImage {
string username = 1;
string password = 2;
}

message GitPackage {
string url = 1;
Expand All @@ -56,13 +62,13 @@ message HeartbeatResponse {

message LogMessageRequest {
string job_jwt = 1;
string timestamp = 2;
string phase = 3;
google.protobuf.Struct json_data = 4;
int32 sequence_number = 2;
string log_message = 3;
string phase = 4;
}
message LogMessageResponse {
bool succeeded = 1;
string timestamp = 2;
int32 sequence_number = 2;
}

message CachedTagRequest {
Expand Down

0 comments on commit 47978a3

Please sign in to comment.