mirror of
https://github.com/helm/helm.git
synced 2026-04-22 23:00:01 -04:00
This adds code to parse TOML files into Values maps. These can then easily be passed into the template engine. Included in this is support for TOML "tables", subsections of TOML files. We will be using those to pass config data to dependent charts.
11 lines
228 B
TOML
11 lines
228 B
TOML
poet = "Coleridge"
|
|
title = "Rime of the Ancient Mariner"
|
|
stanza = ["at", "length", "did", "cross", "an", "Albatross"]
|
|
|
|
[mariner]
|
|
with = "crossbow"
|
|
shot = "ALBATROSS"
|
|
|
|
[water.water]
|
|
where = "everywhere"
|
|
nor = "any drop to drink"
|