Skip to content

Commit

Permalink
fix(helm_resource): no parallel in helm_repo
Browse files Browse the repository at this point in the history
Multiple invocations of `helm_repo` may not be concurrency safe because
of the execution of `helm repo add`. This commit unsets the
`allow_parallel` argument in `helm_repo` to prevent this bug.

Resolves #500

Signed-off-by: Nick Schmeller <[email protected]>
  • Loading branch information
nschmeller committed May 25, 2023
1 parent 1328004 commit a76d9f7
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
2 changes: 1 addition & 1 deletion helm_resource/Tiltfile
Original file line number Diff line number Diff line change
Expand Up @@ -155,4 +155,4 @@ def helm_repo(
if password:
args.extend(['--password', password])

local_resource(resource_name, args, allow_parallel=True, **kwargs)
local_resource(resource_name, args, allow_parallel=False, **kwargs)
7 changes: 7 additions & 0 deletions helm_resource/test/Tiltfile
Original file line number Diff line number Diff line change
Expand Up @@ -98,3 +98,10 @@ helm_resource(
labels=['memcached'],
resource_deps=['helm-repo-bitnami'],
auto_init=False)

helm_repo(name='vm-charts',
url='https://victoriametrics.github.io/helm-charts')
helm_repo(name='grafana-charts',
url='https://grafana.github.io/helm-charts')
helm_resource(name='grafana',
chart='grafana-charts/grafana')

0 comments on commit a76d9f7

Please sign in to comment.