Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add v2 Proto definitions #5415

Merged
merged 5 commits into from
Mar 2, 2021
Merged
Changes from 1 commit
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
Prev Previous commit
remove obsolete field
MarlonGamez committed Feb 25, 2021
commit 4055e0ca08843e73182aca941823c6bd867d8ab3
13 changes: 6 additions & 7 deletions proto/v2/skaffold.proto
Original file line number Diff line number Diff line change
@@ -21,13 +21,12 @@ message Request {
message State {
BuildState buildState = 1;
DeployState deployState = 2;
reserved 3; // field 3 is obsolete
map<int32, PortEvent> forwardedPorts = 4;
StatusCheckState statusCheckState = 5;
FileSyncState fileSyncState = 6;
repeated DebuggingContainerEvent debuggingContainers = 7;
Metadata metadata = 8;
TestState testState = 9;
map<int32, PortEvent> forwardedPorts = 3;
StatusCheckState statusCheckState = 4;
FileSyncState fileSyncState = 5;
repeated DebuggingContainerEvent debuggingContainers = 6;
Metadata metadata = 7;
TestState testState = 8;
}

message Metadata {