helm/docs/examples/nginx
Matt Farina 250b63eced
Updating the labels for consistency
Signed-off-by: Matt Farina <matt@mattfarina.com>
2019-05-07 14:13:29 -04:00
..
charts/alpine Updating the labels for consistency 2019-05-07 14:13:29 -04:00
templates Reduce template code duplication. Fixes #5372 2019-05-07 12:03:54 -04:00
.helmignore docs(examples): add nginx example chart 2016-06-21 16:32:12 -06:00
Chart.yaml ref(pkg/chart): add validation method to chart 2019-04-05 13:40:06 -07: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

README.md

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.