1. 16 Dec, 2016 1 commit
  2. 15 Dec, 2016 2 commits
  3. 10 Oct, 2016 1 commit
  4. 13 Sep, 2016 1 commit
  5. 29 Jul, 2016 1 commit
  6. 21 Jul, 2016 1 commit
    • Matt Butcher's avatar
      fix(tiller): merge -f values correctly · 95eeba38
      Matt Butcher authored
      This fixes a bug in which passed-in values files were not correctly
      merged into the chart's default values YAML data. I believe it also
      fixes some other prioritization bugs in values merging.
      
      The existing unit test was wrong (see TestCoalesceValues). It is
      fixed now. Also added more tests to simulate issue #971.
      
      In the course of writing this, I removed some vestigial code as
      mentioned in #920.
      
      Closes #971
      Closes #920
      95eeba38
  7. 29 Jun, 2016 1 commit
  8. 22 Jun, 2016 1 commit
  9. 14 Jun, 2016 1 commit
    • Matt Butcher's avatar
      feat(chartutil): support global variables · 60f5341b
      Matt Butcher authored
      This provides support for "global" variables. It does this by
      declaring "global" to be a special namespace. It then copies this
      namespace into every subchart, coalescing it into any "global"
      namespace found there.
      
      The net result is that if "global.foo" is set in the YAML file, it
      will be available to every chart/subchart as ".global.foo" regardless of
      where that chart is in the subchart tree.
      60f5341b
  10. 09 Jun, 2016 1 commit
  11. 07 Jun, 2016 1 commit
  12. 15 Apr, 2016 1 commit
    • Matt Butcher's avatar
      feat(chart): add values parser · 619e1e2a
      Matt Butcher authored
      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.
      619e1e2a