Skip to content

Commit

Permalink
Update error messages for failing to find HelmRepository
Browse files Browse the repository at this point in the history
  • Loading branch information
allenporter committed Jan 11, 2024
1 parent a541ea9 commit cce76ae
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion flux_local/helm.py
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,8 @@ async def template(
if not repo:
raise HelmException(
f"Unable to find HelmRepository for {release.chart.chart_name} for "
f"HelmRelease {release.name}"
f"HelmRelease {release.name} "
f"({len(self._repos)} other HelmRepositories in --path)"
)
args: list[str] = [
HELM_BIN,
Expand Down

0 comments on commit cce76ae

Please sign in to comment.