Skip to content

Commit

Permalink
docs: add note about Tanka deploying test resources
Browse files Browse the repository at this point in the history
This behaviour was previously undocumented. See
#550 for more context.
  • Loading branch information
zerok committed Jan 30, 2025
1 parent e75bbf8 commit e1c8547
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions docs/src/content/docs/helm.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -310,3 +310,15 @@ custom: helm.template('foo', './charts/foo', {
```

The literal default format used is `{{ print .kind "_" .metadata.name | snakecase }}`

### Tanka deploys test charts

By default, Tanka will deploy charts using the default flags for `helm
template` which also includes things like test resources. If that's not what
you want, then you can set the `skipTests` option when running `helm.template`:

```jsonnet
custom: helm.template('foo', './charts/foo', {
skipTests: true,
})
```

0 comments on commit e1c8547

Please sign in to comment.