diff --git a/docs/src/content/docs/helm.mdx b/docs/src/content/docs/helm.mdx index 797882c27..3a674f47c 100644 --- a/docs/src/content/docs/helm.mdx +++ b/docs/src/content/docs/helm.mdx @@ -305,7 +305,7 @@ To handle this, pass a custom name format, e.g. to also include the namespace: ```jsonnet custom: helm.template('foo', './charts/foo', { - nameFormat: '{{ print .namespace "_" .kind "_" .metadata.name | snakecase }}' + nameFormat: '{{ print .metadata.namespace "_" .kind "_" .metadata.name | snakecase }}' }) ```