From 70692ecbd43742f1baa241da75e6c11798736df1 Mon Sep 17 00:00:00 2001 From: Tony Hsu Date: Wed, 25 Jan 2017 15:13:11 +0800 Subject: [PATCH] Fix typo --- docs/chart_template_guide/accessing_files.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/chart_template_guide/accessing_files.md b/docs/chart_template_guide/accessing_files.md index dfd897047..3911af830 100644 --- a/docs/chart_template_guide/accessing_files.md +++ b/docs/chart_template_guide/accessing_files.md @@ -4,10 +4,10 @@ In the previous section we looked at several ways to create and access named tem Helm provides access to files through the `.Files` object. Before we get going with the template examples, though, there are a few things to note about how this works: -- It is okay to add extra files to your Helm chart. These files will be bundled and set to Tiller. Be careful, though. Charts must be smaller than 1M because of the storage limitations of Kubernetes objects. +- It is okay to add extra files to your Helm chart. These files will be bundled and sent to Tiller. Be careful, though. Charts must be smaller than 1M because of the storage limitations of Kubernetes objects. - Some files cannot be accessed through the `.Files` object, usually for security reasons. - Files in `templates/` cannot be accessed. -- Charts to not preserve UNIX mode information, so file-level permissions will have no impact on the availability of a file when it comes to the `.Files` object. +- Charts do not preserve UNIX mode information, so file-level permissions will have no impact on the availability of a file when it comes to the `.Files` object.