Helm ConfigMap and Secrets: Difference between revisions
Jump to navigation
Jump to search
(5 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
=External= | =External= | ||
* https://helm.sh/docs/chart_template_guide/accessing_files/ | |||
* https://helm.sh/docs/chart_template_guide/accessing_files/#configmap-and-secrets-utility-functions | * https://helm.sh/docs/chart_template_guide/accessing_files/#configmap-and-secrets-utility-functions | ||
=Internal= | =Internal= | ||
* [[Helm_Templates#ConfigMap_and_Secrets_Utility_Functions|Helm Templates]] | * [[Helm_Templates#ConfigMap_and_Secrets_Utility_Functions|Helm Templates]] | ||
* [[Kubernetes ConfigMap Manifest|ConfigMap Manifest]] | * [[Kubernetes ConfigMap Manifest|ConfigMap Manifest]] | ||
* [[Helm_Accessing_Arbitrary_Files_inside_Templates#Overview|Accessing Arbitrary Files inside Templates]] | |||
=Overview= | =Overview= | ||
<font color=darkkhaki>TO PROCESS: https://helm.sh/docs/chart_template_guide/accessing_files/#configmap-and-secrets-utility-functions</font> | |||
=ConfigMap with <tt>binaryData</tt>= | =ConfigMap with <tt>binaryData</tt>= | ||
This example shows how to build a ConfigMap template that exposes a binary file inside a pod, without redundantly shipping the content of the file with the Helm chart: {{External|https://github.com/ovidiuf/playground/tree/master/helm/configmap/configmap-binaryData}} |
Latest revision as of 19:33, 2 March 2022
External
- https://helm.sh/docs/chart_template_guide/accessing_files/
- https://helm.sh/docs/chart_template_guide/accessing_files/#configmap-and-secrets-utility-functions
Internal
Overview
TO PROCESS: https://helm.sh/docs/chart_template_guide/accessing_files/#configmap-and-secrets-utility-functions
ConfigMap with binaryData
This example shows how to build a ConfigMap template that exposes a binary file inside a pod, without redundantly shipping the content of the file with the Helm chart: