mirror of https://github.com/helm/helm
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
415 B
21 lines
415 B
syntax = "proto3";
|
|
|
|
package hapi.release;
|
|
|
|
import "google/protobuf/timestamp.proto";
|
|
import "hapi/release/status.proto";
|
|
|
|
option go_package = "release";
|
|
|
|
// Info describes release information.
|
|
message Info {
|
|
Status status = 1;
|
|
|
|
google.protobuf.Timestamp first_deployed = 2;
|
|
|
|
google.protobuf.Timestamp last_deployed = 3;
|
|
|
|
// Deleted tracks when this object was deleted.
|
|
google.protobuf.Timestamp deleted = 4;
|
|
}
|