From 2a0090c8c74da3ffd64b1c3f9675754e701611f0 Mon Sep 17 00:00:00 2001 From: Daniel Barker Date: Fri, 26 Jan 2018 07:39:53 -0600 Subject: [PATCH] Disambiguate encoding from secrets --- docs/chart_template_guide/accessing_files.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/chart_template_guide/accessing_files.md b/docs/chart_template_guide/accessing_files.md index 896dccfd1..250fd9520 100644 --- a/docs/chart_template_guide/accessing_files.md +++ b/docs/chart_template_guide/accessing_files.md @@ -18,7 +18,7 @@ Helm provides access to files through the `.Files` object. Before we get going w - [Path helpers](#path-helpers) - [Glob patterns](#glob-patterns) - [ConfigMap and Secrets utility functions](#configmap-and-secrets-utility-functions) -- [Secrets](#secrets) +- [Encoding](#encoding) - [Lines](#lines) @@ -163,9 +163,9 @@ data: {{ (.Files.Glob "bar/*").AsSecrets | indent 2 }} ``` -## Secrets +## Encoding -When working with a Secret resource, you can import a file and have the template base-64 encode it for you: +You can import a file and have the template base-64 encode it to ensure successful transmission: ```yaml apiVersion: v1