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.
18 lines
367 B
18 lines
367 B
syntax = "proto3";
|
|
|
|
package hapi.chart;
|
|
|
|
option go_package = "chart";
|
|
|
|
// Template represents a template as a name/value pair.
|
|
//
|
|
// By convention, name is a relative path within the scope of the chart's
|
|
// base directory.
|
|
message Template {
|
|
// Name is the path-like name of the template.
|
|
string name = 1;
|
|
|
|
// Data is the template as byte data.
|
|
bytes data = 2;
|
|
}
|