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
670 B
30 lines
670 B
syntax = "proto3";
|
|
|
|
package hapi.chart;
|
|
|
|
import "hapi/chart/config.proto";
|
|
import "hapi/chart/metadata.proto";
|
|
import "hapi/chart/template.proto";
|
|
|
|
option go_package = "chart";
|
|
|
|
//
|
|
// Chart:
|
|
// A 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;
|
|
|
|
}
|