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.
helm/_proto/install.proto

21 lines
277 B

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
}