helm/_proto/hapi/chart/config.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
301 B
Protocol Buffer

syntax = "proto3";
package hapi.chart;
option go_package = "chart";
// Config supplies values to the parametrizable templates of a chart.
message Config {
string raw = 1;
map<string,Value> values = 2;
}
// Value describes a configuration value as a string.
message Value {
string value = 1;
}