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
277 B
21 lines
277 B
9 years ago
|
syntax = "proto3";
|
||
|
package hapi;
|
||
|
|
||
|
message InstallRequest{
|
||
|
string name = 1
|
||
|
Chart chart = 2
|
||
|
Values values = 3
|
||
|
}
|
||
|
|
||
|
message InstallResponseError {
|
||
|
oneof response {
|
||
|
Error = 1
|
||
|
InstallResponse = 2
|
||
|
}
|
||
|
}
|
||
|
|
||
|
message InstallResponse{
|
||
|
string name = 1
|
||
|
Status status = 2
|
||
|
}
|