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.
30 lines
764 B
30 lines
764 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 describes a deployment of a chart, together with the chart
|
|
// and the variables used to deploy that chart.
|
|
message Release {
|
|
// Name is the name of the release
|
|
string name = 1;
|
|
|
|
// Info provides information about a release
|
|
hapi.release.Info info = 2;
|
|
|
|
// Chart is the chart that was released.
|
|
hapi.chart.Chart chart = 3;
|
|
|
|
// Config is the set of extra Values added to the chart.
|
|
// These values override the default values inside of the chart.
|
|
hapi.chart.Config config = 4;
|
|
|
|
// Manifest is the string representation of the rendered template.
|
|
string manifest = 5;
|
|
}
|