1. 20 Apr, 2018 1 commit
  2. 18 Apr, 2018 2 commits
  3. 13 Mar, 2018 1 commit
  4. 09 Mar, 2018 1 commit
  5. 03 Dec, 2017 3 commits
  6. 28 May, 2017 3 commits
  7. 27 May, 2017 1 commit
    • Matt Butcher's avatar
      fix(2452): sort templates before parse · 8937c775
      Matt Butcher authored
      This sorts templates by depth before sending them to the template
      parser. Deepest templates are parsed first, with umbrella templates
      parsed last. Since template definition names are LIFO, that means that
      the highest level templates will claim the namespace.
      
      Or, to put it simply, you can predictably override a child's defined
      template by re-defining it in a parent chart.
      
      Closes #2452
      Unverified
      8937c775
  8. 02 May, 2017 2 commits
  9. 01 May, 2017 1 commit
    • Fabian Ruff's avatar
      Skip rendering partials · b94eb82d
      Fabian Ruff authored
      The output of a rendered partial is not used and rendering it might fail if it expects different values
      b94eb82d
  10. 29 Apr, 2017 1 commit
  11. 08 Mar, 2017 1 commit
    • Steve Wilkerson's avatar
      feat(helm): add support for required properties · 79a3db0a
      Steve Wilkerson authored
      Adds the `required` function in enginge.go to support required
      properties in values.yml. When a chart developer wishes to specify
      intent in requiring a value, they can use this function to declare
      an error message that gets returned when chart rendering fails
      when a required value is not present in values.yml.
      
      Closes #1580
      79a3db0a
  12. 06 Mar, 2017 1 commit
  13. 01 Mar, 2017 1 commit
  14. 21 Feb, 2017 1 commit
  15. 10 Jan, 2017 1 commit
  16. 14 Dec, 2016 1 commit
  17. 13 Dec, 2016 1 commit
  18. 09 Dec, 2016 2 commits
  19. 21 Oct, 2016 1 commit
  20. 14 Oct, 2016 1 commit
  21. 26 Sep, 2016 1 commit
  22. 30 Aug, 2016 1 commit
  23. 29 Aug, 2016 1 commit
  24. 23 Aug, 2016 1 commit
  25. 03 Aug, 2016 1 commit
  26. 01 Aug, 2016 1 commit
    • Matt Butcher's avatar
      feat(engine): add 'partial' function · 9718c9e7
      Matt Butcher authored
      This adds a context-aware template function called 'partial' that will
      allow rendering other templates in a chart into a string value, which
      can then be piped to other functions. Usage is something like
      '{{partial 'path/to/template.yaml' | indent 2}}'
      
      This might be a bad idea.
      
      Closes #1005
      9718c9e7
  27. 29 Jul, 2016 1 commit
  28. 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
  29. 12 Jul, 2016 1 commit
  30. 07 Jul, 2016 1 commit
    • Matt Butcher's avatar
      fix(engine): change template naming · 73a28902
      Matt Butcher authored
      Template paths were relative to the chart that contained them, which
      meant that all templates were named 'template/SOMETHING'. This made it
      trivially easy to hit namespace collisions as in #933.
      
      Template path names are essentially opaque strings so this patch simply
      changes them to be qualified by parent chart.
      73a28902
  31. 28 Jun, 2016 1 commit
    • Matt Butcher's avatar
      feat(tiller): add .Template object in templates · 532f03ec
      Matt Butcher authored
      This allows templates to access information about the template file.
      Right now, the template can only access the .Template.Name, which is the
      chart-relative path to the current template.
      
      Closes #894
      532f03ec
  32. 24 Jun, 2016 2 commits