Skip to content

Commit

Permalink
helm_resource: update docs (tilt-dev#539)
Browse files Browse the repository at this point in the history
Signed-off-by: Nick Santos <[email protected]>
  • Loading branch information
nicks authored Dec 13, 2023
1 parent 1b25096 commit 214edce
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
11 changes: 10 additions & 1 deletion helm_resource/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,9 @@ def helm_resource(
resource_deps=None,
labels=None,
port_forwards=[],
auto_init=True):
auto_init=True,
pod_readiness='',
update_dependencies: False):
...
```

Expand Down Expand Up @@ -94,6 +96,13 @@ chart. Must be the same length as `image_deps`. There are two common patterns.

`auto_init`: Whether this resource runs on `tilt up`. Defaults to `True`. For more info, see the [Manual Update Control docs](https://docs.tilt.dev/manual_update_control.html).

`pod_readiness`: Possible values: 'ignore', 'wait'. Controls whether Tilt waits for
pods to be ready before the resource is considered healthy (and dependencies
can start building). By default, Tilt will wait for pods to be ready if it
thinks a resource has pods.

`update_dependenices`: Runs `helm dependency update` before installing the chart.

### helm_repo

```
Expand Down
1 change: 1 addition & 0 deletions helm_resource/Tiltfile
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ def helm_resource(
pods to be ready before the resource is considered healthy (and dependencies
can start building). By default, Tilt will wait for pods to be ready if it
thinks a resource has pods.
update_dependencies: Runs `helm dependency update` before installing the chart.
"""
if not release_name:
release_name=name
Expand Down

0 comments on commit 214edce

Please sign in to comment.