mirror of
https://github.com/helm/helm.git
synced 2026-05-25 02:37:57 -04:00
untabify status.proto file
This commit is contained in:
parent
bdbe457c3c
commit
05374bbebf
1 changed files with 14 additions and 14 deletions
|
|
@ -22,22 +22,22 @@ option go_package = "release";
|
|||
|
||||
// Status defines the status of a release.
|
||||
message Status {
|
||||
enum Code {
|
||||
// Status_UNKNOWN indicates that a release is in an uncertain state.
|
||||
UNKNOWN = 0;
|
||||
// Status_DEPLOYED indicates that the release has been pushed to Kubernetes.
|
||||
DEPLOYED = 1;
|
||||
// Status_DELETED indicates that a release has been deleted from Kubermetes.
|
||||
DELETED = 2;
|
||||
// Status_SUPERSEDED indicates that this release object is outdated and a newer one exists.
|
||||
SUPERSEDED = 3;
|
||||
// Status_FAILED indicates that the release was not successfully deployed.
|
||||
FAILED = 4;
|
||||
}
|
||||
enum Code {
|
||||
// Status_UNKNOWN indicates that a release is in an uncertain state.
|
||||
UNKNOWN = 0;
|
||||
// Status_DEPLOYED indicates that the release has been pushed to Kubernetes.
|
||||
DEPLOYED = 1;
|
||||
// Status_DELETED indicates that a release has been deleted from Kubermetes.
|
||||
DELETED = 2;
|
||||
// Status_SUPERSEDED indicates that this release object is outdated and a newer one exists.
|
||||
SUPERSEDED = 3;
|
||||
// Status_FAILED indicates that the release was not successfully deployed.
|
||||
FAILED = 4;
|
||||
}
|
||||
|
||||
Code code = 1;
|
||||
Code code = 1;
|
||||
|
||||
google.protobuf.Any details = 2;
|
||||
google.protobuf.Any details = 2;
|
||||
// Cluster resources as kubectl would print them.
|
||||
string resources = 3;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue