mirror of
https://github.com/helm/helm.git
synced 2026-04-22 14:47:41 -04:00
17 lines
301 B
Protocol Buffer
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;
|
|
}
|