helm/docs/examples/nginx
Lukas Eichler a78336ad35 docs(helm): Added kubeVersion to documentation.
docs(helm): Added kubeVersion to documentation and examples.
Adjusted wording for the Chart.kubeVersion description
Removing redundant wording for Chart.kubeVersion description
2018-02-27 09:16:02 +01:00
..
templates helm create all defined template names should be namespaced … (#2845) 2017-10-06 09:04:53 -06:00
.helmignore docs(examples): add nginx example chart 2016-06-21 16:32:12 -06:00
Chart.yaml docs(helm): Added kubeVersion to documentation. 2018-02-27 09:16:02 +01:00
README.md fix typo 2018-01-08 10:23:15 -05:00
values.yaml Improve chart examples 2017-06-16 09:18:26 +02:00

nginx: An advanced example chart

This Helm chart provides examples of some of Helm's more powerful features.

This is not a production-grade chart. It is an example.

The chart installs a simple nginx server according to the following pattern:

The values.yaml exposes a few of the configuration options in the charts, though there are some that are not exposed there (like .image).

The templates/_helpers.tpl file contains helper templates. The leading underscore (_) on the filename is semantic. It tells the template renderer that this file does not contain a manifest. That file declares some templates that are used elsewhere in the chart.

Helpers (usually called "partials" in template languages) are an advanced way for developers to structure their templates for optimal reuse.

You can deploy this chart with helm install docs/examples/nginx. Or you can see how this chart would render with helm install --dry-run --debug docs/examples/nginx.