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/file.go

13 lines
341 B

package chart
// File represents a file as a name/value pair.
//
// By convention, name is a relative path within the scope of the chart's
// base directory.
type File struct {
// Name is the path-like name of the template.
Name string `json:"name,omitempty"`
// Data is the template as byte data.
Data []byte `json:"data,omitempty"`
}