Skip to content

Commit

Permalink
fix: revert back resource.proto order
Browse files Browse the repository at this point in the history
Otherwise it breaks older `talosctl` compatibility.

Signed-off-by: Artem Chernyshev <artem.0xD2@gmail.com>
  • Loading branch information
Unix4ever authored and talos-bot committed Jun 23, 2021
1 parent d3f4e60 commit 71fff02
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 15 deletions.
10 changes: 5 additions & 5 deletions api/resource/resource.proto
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,11 @@ message Metadata {
string type = 2;
string id = 3;
string version = 4;
string owner = 5;
string phase = 6;
google.protobuf.Timestamp created = 7;
google.protobuf.Timestamp updated = 8;
repeated string finalizers = 9;
string owner = 7;
string phase = 5;
google.protobuf.Timestamp created = 8;
google.protobuf.Timestamp updated = 9;
repeated string finalizers = 6;
}

message Spec {
Expand Down
20 changes: 10 additions & 10 deletions pkg/machinery/api/resource/resource.pb.go

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

0 comments on commit 71fff02

Please sign in to comment.