Documentation
¶
Overview ¶
Package strvals provides tools for working with strval lines.
Helm supports a compressed format for YAML settings which we call strvals. The format is roughly like this:
name=value,topname.subname=value
The above is equivalent to the YAML document
name: value topname: subname: value
This package provides a parser and utilities for converting the strvals format to other formats.
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ErrNotList = errors.New("not a list")
ErrNotList indicates that a non-list was treated as a list.
Functions ¶
func Parse ¶
func Parse(s string) (map[string]interface{}, error)
Parse parses a set line.
A set line is of the form name1=value1,name2=value2
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.