Skip to content

Commit d54c97f

Browse files
authored
docs: add note about Tanka deploying test resources (#1329)
This behaviour was previously undocumented. See #550 for more context.
1 parent 05dfa38 commit d54c97f

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

docs/src/content/docs/helm.mdx

+12
Original file line numberDiff line numberDiff line change
@@ -310,3 +310,15 @@ custom: helm.template('foo', './charts/foo', {
310310
```
311311

312312
The literal default format used is `{{ print .kind "_" .metadata.name | snakecase }}`
313+
314+
### Tanka deploys test charts
315+
316+
By default, Tanka will deploy charts using the default flags for `helm
317+
template` which also includes things like test resources. If that's not what
318+
you want, then you can set the `skipTests` option when running `helm.template`:
319+
320+
```jsonnet
321+
custom: helm.template('foo', './charts/foo', {
322+
skipTests: true,
323+
})
324+
```

0 commit comments

Comments
 (0)