- 04 Dec, 2018 1 commit
-
-
Adam Reese authored
Signed-off-by:
Adam Reese <adam@reese.io>
-
- 29 Aug, 2018 1 commit
-
-
Adam Reese authored
Signed-off-by:
Adam Reese <adam@reese.io>
-
- 24 Aug, 2018 2 commits
-
-
Adam Reese authored
-
Adam Reese authored
ref(chartutil): move chart loading out of chartutil into new package add chart loader interface to allow lazy loading feat(chart): create chart accessors ref(*): cleanup requirements ref(tiller): remove optional template engines ref(tiller): simplify sorting releases and hooks ref(*): code simplification ref(hapi): move chart package out of hapi ref(chart): add requirements and lock to Chart struct
-
- 10 May, 2018 1 commit
-
-
Adam Reese authored
-
- 20 Apr, 2018 1 commit
-
-
Adam Reese authored
-
- 18 Apr, 2018 2 commits
-
-
Adam Reese authored
-
Adam Reese authored
-
- 13 Mar, 2018 1 commit
-
-
scriptonist authored
-
- 09 Mar, 2018 1 commit
-
-
scriptonist authored
-
- 03 Dec, 2017 3 commits
-
-
Lukas Eichler authored
Modified existing unit test to verify the changed behavior. Removed debug print.
-
Lukas Eichler authored
-
Lukas Eichler authored
docs(helm): Added documentation about tpl function
-
- 28 May, 2017 3 commits
-
-
Lukas Eichler authored
-
Lukas Eichler authored
-
Lukas Eichler authored
-
- 27 May, 2017 1 commit
-
-
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
-
- 02 May, 2017 2 commits
-
-
Lukas Eichler authored
- Added tests for using a function inside a template that is evaluated using the "tpl" function
-
Lukas Eichler authored
Implementation for #1978
-
- 01 May, 2017 1 commit
-
-
Fabian Ruff authored
The output of a rendered partial is not used and rendering it might fail if it expects different values
-
- 29 Apr, 2017 1 commit
-
-
Fabian Ruff authored
-
- 08 Mar, 2017 1 commit
-
-
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
-
- 06 Mar, 2017 1 commit
-
-
Fabian Ruff authored
-
- 01 Mar, 2017 1 commit
-
-
Jack Zampolin authored
-
- 21 Feb, 2017 1 commit
-
-
YuviPanda authored
-
- 10 Jan, 2017 1 commit
-
-
Matt Butcher authored
This adds the {{.Capabilities}} object to the template variables so that chart authors can write charts that are aware of teh Kubernetes capabilities of the current cluster. Closes #1608
-
- 14 Dec, 2016 1 commit
-
-
Matt Butcher authored
This adds a fromYaml template function. Closes #1604
-
- 13 Dec, 2016 1 commit
-
-
Andrew Stuart authored
-
- 09 Dec, 2016 2 commits
-
-
Andrew Stuart authored
-
Andrew Stuart authored
-
- 21 Oct, 2016 1 commit
-
-
Adnan Abdulhussein authored
-
- 14 Oct, 2016 1 commit
-
-
Matt Butcher authored
This adds a function engine.FuncMap that returns a function mapping that better represents the functions passed to a template. The linting logic is reconfigured to use this function instead of the sprig.FuncMap function. Closes #1366
-
- 26 Sep, 2016 1 commit
-
-
Matt Butcher authored
This adds the function toYaml to the Engine template functions. Closes #1225
-
- 30 Aug, 2016 1 commit
-
-
joe2far authored
-
- 29 Aug, 2016 1 commit
-
-
vaikas-google authored
-
- 23 Aug, 2016 1 commit
-
-
Matt Butcher authored
Closes #1076
-
- 03 Aug, 2016 1 commit
-
-
Matt Butcher authored
This changes "pkg/chartutil".Files.Get to return a string, removes "pkg/chartutil".Files.GetString, and adds "pkg/chartutil".Files.GetBytes. Closes #1020
-
- 01 Aug, 2016 1 commit
-
-
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
-
- 29 Jul, 2016 1 commit
-
-
Matt Butcher authored
Templates can now access the non-template files in a chart by using the '{{.Files}}' map inside of a template. Relates to #950
-
- 21 Jul, 2016 1 commit
-
-
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
-