mirror of
https://github.com/helm/helm.git
synced 2026-04-15 21:59:50 -04:00
17 lines
367 B
Protocol Buffer
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;
|
|
}
|