From 0ebe15295b5b6c6fd79a6a6dae8d90ffc168c312 Mon Sep 17 00:00:00 2001 From: Joseph Gardner Date: Thu, 7 Dec 2023 14:14:10 -0500 Subject: [PATCH] chore(docs): Add missing template funcs (#1201) --- docs/index.md | 34 +++++++++++++++++++--------------- 1 file changed, 19 insertions(+), 15 deletions(-) diff --git a/docs/index.md b/docs/index.md index 0847df09..8af3a404 100644 --- a/docs/index.md +++ b/docs/index.md @@ -463,22 +463,26 @@ Helmfile uses [Go templates](https://godoc.org/text/template) for templating you We also added the following functions: -* `requiredEnv` -* `exec` -* `envExec` -* `readFile` -* `readDir` -* `readDirEntries` -* `toYaml` -* `fromYaml` -* `setValueAtPath` -* `get` (Sprig's original `get` is available as `sprigGet`) -* `tpl` -* `required` -* `fetchSecretValue` -* `expandSecretRefs` +* [`env`](templating_funcs.md#env) +* [`requiredEnv`](templating_funcs.md#requiredenv) +* [`exec`](templating_funcs.md#exec) +* [`envExec`](templating_funcs.md#envexec) +* [`readFile`](templating_funcs.md#readfile) +* [`readDir`](templating_funcs.md#readdir) +* [`readDirEntries`](templating_funcs.md#readdirentries) +* [`toYaml`](templating_funcs.md#toyaml) +* [`fromYaml`](templating_funcs.md#fromyaml) +* [`setValueAtPath`](templating_funcs.md#setvalueatpath) +* [`get`](templating_funcs.md#get) (Sprig's original `get` is available as `sprigGet`) +* [`getOrNil`](templating_funcs.md#getornil) +* [`tpl`](templating_funcs.md#tpl) +* [`required`](templating_funcs.md#required) +* [`fetchSecretValue`](templating_funcs.md#fetchsecretvalue) +* [`expandSecretRefs`](templating_funcs.md#expandsecretrefs) +* [`include`](templating_funcs.md#include) + +More details on each function can be found at the ["Template Functions" page in our documentation](templating_funcs.md). -More details on each function can be found at ["Template Functions" page in our documentation](templating_funcs.md). ## Using environment variables