Helm Accessing Arbitrary Files inside Templates: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 7: Line 7:


=Overview=
=Overview=
It is OK to add extra files to the Helm chart. These files will be bundled. However, charts must be smaller than 1M because of storage limitation of Kubernetes objects.


The <code>Files</code> object provide access to all non-special files in the chart. It cannot be used to access templates. The access is provided via several [[#Functions|functions]].
The <code>Files</code> object provide access to all non-special files in the chart. It cannot be used to access templates. The access is provided via several [[#Functions|functions]].

Revision as of 19:07, 2 March 2022

External

Internal

Overview

It is OK to add extra files to the Helm chart. These files will be bundled. However, charts must be smaller than 1M because of storage limitation of Kubernetes objects.

The Files object provide access to all non-special files in the chart. It cannot be used to access templates. The access is provided via several functions.

Functions

Files.Get

{{ .Files.Get <file-name> }}

Files.GetBytes