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/hapi/chart/chart.proto

25 lines
482 B

syntax = "proto3";
package hapi.chart;
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 {
// TODO
hapi.chart.Metadata metadata = 1;
// TODO
hapi.chart.Templates templates = 2;
// TODO
repeated Chart dependencies = 3;
}