Thanks to visit codestin.com
Credit goes to github.com

Skip to content
This repository was archived by the owner on Jul 22, 2019. It is now read-only.

Commit 3559dcb

Browse files
committed
Revert update Helm protos
1 parent 8bd8ad4 commit 3559dcb

26 files changed

+4
-606
lines changed

android/app/src/main/proto/hapi/chart/chart.proto

100644100755
File mode changed.

android/app/src/main/proto/hapi/chart/config.proto

100644100755
File mode changed.

android/app/src/main/proto/hapi/chart/metadata.proto

100644100755
Lines changed: 0 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,6 @@ message Maintainer {
2525

2626
// Email is an optional email address to contact the named maintainer
2727
string email = 2;
28-
29-
// Url is an optional URL to an address for the named maintainer
30-
string url = 3;
3128
}
3229

3330
// Metadata for a Chart file. This models the structure of a Chart.yaml file.
@@ -67,27 +64,4 @@ message Metadata {
6764

6865
// The API Version of this chart.
6966
string apiVersion = 10;
70-
71-
// The condition to check to enable chart
72-
string condition = 11;
73-
74-
// The tags to check to enable chart
75-
string tags = 12;
76-
77-
// The version of the application enclosed inside of this chart.
78-
string appVersion = 13;
79-
80-
// Whether or not this chart is deprecated
81-
bool deprecated = 14;
82-
83-
// TillerVersion is a SemVer constraints on what version of Tiller is required.
84-
// See SemVer ranges here: https://github.com/Masterminds/semver#basic-comparisons
85-
string tillerVersion = 15;
86-
87-
// Annotations are additional mappings uninterpreted by Tiller,
88-
// made available for inspection by other applications.
89-
map<string,string> annotations = 16;
90-
91-
// KubeVersion is a SemVer constraint specifying the version of Kubernetes required.
92-
string kubeVersion = 17;
9367
}

android/app/src/main/proto/hapi/chart/template.proto

100644100755
File mode changed.

android/app/src/main/proto/hapi/release/hook.proto

100644100755
Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,6 @@ message Hook {
3232
POST_UPGRADE = 6;
3333
PRE_ROLLBACK = 7;
3434
POST_ROLLBACK = 8;
35-
RELEASE_TEST_SUCCESS = 9;
36-
RELEASE_TEST_FAILURE = 10;
37-
}
38-
enum DeletePolicy {
39-
SUCCEEDED = 0;
40-
FAILED = 1;
4135
}
4236
string name = 1;
4337
// Kind is the Kubernetes kind.
@@ -50,8 +44,4 @@ message Hook {
5044
repeated Event events = 5;
5145
// LastRun indicates the date/time this was last run.
5246
google.protobuf.Timestamp last_run = 6;
53-
// Weight indicates the sort order for execution among similar Hook type
54-
int32 weight = 7;
55-
// DeletePolicies are the policies that indicate when to delete the hook
56-
repeated DeletePolicy delete_policies = 8;
5747
}

android/app/src/main/proto/hapi/release/info.proto

100644100755
Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,4 @@ message Info {
3131

3232
// Deleted tracks when this object was deleted.
3333
google.protobuf.Timestamp deleted = 4;
34-
35-
// Description is human-friendly "log entry" about this release.
36-
string Description = 5;
3734
}

android/app/src/main/proto/hapi/release/release.proto

100644100755
File mode changed.

android/app/src/main/proto/hapi/release/status.proto

100644100755
Lines changed: 1 addition & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,6 @@ syntax = "proto3";
1616

1717
package hapi.release;
1818

19-
import "hapi/release/test_suite.proto";
20-
2119
import "google/protobuf/any.proto";
2220

2321
option go_package = "release";
@@ -35,27 +33,15 @@ message Status {
3533
SUPERSEDED = 3;
3634
// Status_FAILED indicates that the release was not successfully deployed.
3735
FAILED = 4;
38-
// Status_DELETING indicates that a delete operation is underway.
39-
DELETING = 5;
40-
// Status_PENDING_INSTALL indicates that an install operation is underway.
41-
PENDING_INSTALL = 6;
42-
// Status_PENDING_UPGRADE indicates that an upgrade operation is underway.
43-
PENDING_UPGRADE = 7;
44-
// Status_PENDING_ROLLBACK indicates that an rollback operation is underway.
45-
PENDING_ROLLBACK = 8;
4636
}
4737

4838
Code code = 1;
4939

50-
// Deprecated
51-
// google.protobuf.Any details = 2;
40+
google.protobuf.Any details = 2;
5241

5342
// Cluster resources as kubectl would print them.
5443
string resources = 3;
5544

5645
// Contains the rendered templates/NOTES.txt if available
5746
string notes = 4;
58-
59-
// LastTestSuiteRun provides results on the last test run on a release
60-
hapi.release.TestSuite last_test_suite_run = 5;
6147
}

android/app/src/main/proto/hapi/release/test_run.proto

Lines changed: 0 additions & 37 deletions
This file was deleted.

android/app/src/main/proto/hapi/release/test_suite.proto

Lines changed: 0 additions & 34 deletions
This file was deleted.

0 commit comments

Comments
 (0)