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.
29 lines
376 B
29 lines
376 B
syntax = "proto3";
|
|
|
|
package hapi.release;
|
|
|
|
import "hapi/release/info.proto";
|
|
import "hapi/chart/config.proto";
|
|
import "hapi/chart/chart.proto";
|
|
|
|
option go_package = "release";
|
|
|
|
//
|
|
// Release:
|
|
//
|
|
// TODO
|
|
//
|
|
message Release {
|
|
// TODO
|
|
string name = 1;
|
|
|
|
// TODO
|
|
hapi.release.Info info = 2;
|
|
|
|
// TODO
|
|
hapi.chart.Chart chart = 3;
|
|
|
|
// TODO
|
|
hapi.chart.Config config = 4;
|
|
}
|