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.
31 lines
789 B
31 lines
789 B
syntax = "proto3";
|
|
|
|
package hapi.chart;
|
|
|
|
import "hapi/chart/config.proto";
|
|
import "hapi/chart/metadata.proto";
|
|
import "hapi/chart/template.proto";
|
|
import "google/protobuf/any.proto";
|
|
|
|
option go_package = "chart";
|
|
|
|
// Chart is a helm package that contains metadata, a default config, zero or more
|
|
// optionally parameterizable templates, and zero or more charts (dependencies).
|
|
message Chart {
|
|
// Contents of the Chartfile.
|
|
hapi.chart.Metadata metadata = 1;
|
|
|
|
// Templates for this chart.
|
|
repeated hapi.chart.Template templates = 2;
|
|
|
|
// Charts that this chart depends on.
|
|
repeated Chart dependencies = 3;
|
|
|
|
// Default config for this template.
|
|
hapi.chart.Config values = 4;
|
|
|
|
// Miscellaneous files in a chart archive,
|
|
// e.g. README, LICENSE, etc.
|
|
google.protobuf.Any files = 5;
|
|
}
|