Skip to content

Commit

Permalink
annotations: add WiP status annotations. (#22)
Browse files Browse the repository at this point in the history
As per envoyproxy/envoy#9769.

Signed-off-by: Harvey Tuch <htuch@google.com>
  • Loading branch information
htuch authored Jan 24, 2020
1 parent edbea6a commit db4b343
Show file tree
Hide file tree
Showing 3 changed files with 213 additions and 0 deletions.
93 changes: 93 additions & 0 deletions go/udpa/annotations/status.pb.go

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

104 changes: 104 additions & 0 deletions go/udpa/annotations/status.pb.validate.go

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

16 changes: 16 additions & 0 deletions udpa/annotations/status.proto
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
syntax = "proto3";

package udpa.annotations;

import "google/protobuf/descriptor.proto";

// Magic number in this file derived from top 28bit of SHA256 digest of
// "udpa.annotation.status".
extend google.protobuf.FileOptions {
StatusAnnotation file_status = 222707719;
}

message StatusAnnotation {
// The entity is work-in-progress and subject to breaking changes.
bool work_in_progress = 1;
}

0 comments on commit db4b343

Please sign in to comment.