From af2fb9b994d74869a10635e687ac0d546bf7b892 Mon Sep 17 00:00:00 2001 From: Craig Ringer Date: Mon, 12 Aug 2024 16:12:21 +1200 Subject: [PATCH] Mention ytt, templating support in kapp FAQ Signed-off-by: Craig Ringer --- site/content/kapp/docs/develop/faq.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/site/content/kapp/docs/develop/faq.md b/site/content/kapp/docs/develop/faq.md index c891ef429..c88e4b485 100644 --- a/site/content/kapp/docs/develop/faq.md +++ b/site/content/kapp/docs/develop/faq.md @@ -125,3 +125,7 @@ Additional resources: [tty flag in kapp code](https://github.com/carvel-dev/kapp ## How can I get kapp to skip waiting on some resources? kapp allows to control waiting behavior per resource via [resource annotations](apply-waiting.md#controlling-waiting-via-resource-annotations). When used, the resource will be applied to the cluster, but will not wait to reconcile. +--- +## Does kapp support templating or variable substitution? + +No, `kapp` has no built-in support for templating, substitutions, or other manifest transformations. Use a manifest generation and templating tool like [`ytt`](https://carvel.dev/ytt/) or [`kustomize`](https://kustomize.io/) to provide input into `kapp`.