helm/_proto/hapi/chart/template.proto
Matt Butcher 3ddacb6b4b fix(proto): fix style issues and documentation
This fixes indentation, documentation, and removes unused protobuf
files.
2016-05-10 17:13:16 -06:00

17 lines
367 B
Protocol Buffer

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;
}