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 657bc9b
Showing 1 changed file with 1 addition 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)

0 comments on commit 657bc9b

Please sign in to comment.