You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
helm/pkg/hapi/chart/config.go

13 lines
325 B

package chart
// Config supplies values to the parametrizable templates of a chart.
type Config struct {
Raw string `json:"raw,omitempty"`
Values map[string]*Value `json:"values,omitempty"`
}
// Value describes a configuration value as a string.
type Value struct {
Value string `json:"value,omitempty"`
}