template.proto 367 bytes
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;