Skip to content

Commit

Permalink
finally fix combination of repo and input args for resource_deps
Browse files Browse the repository at this point in the history
  • Loading branch information
TimothyLoyer committed Jul 9, 2024
1 parent ac95129 commit 05f7d8c
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions ingress_nginx/helm/Tiltfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,6 @@ REPO_ALIAS = "ingress-nginx-repo"
LABEL = "ingress"

def load_helmchart(resource_deps = [], labels = []):
dependencies = [REPO_ALIAS]
dependencies.append(resource_deps)

helm_repo(
REPO_ALIAS,
url = "https://kubernetes.github.io/ingress-nginx",
Expand All @@ -23,6 +20,6 @@ def load_helmchart(resource_deps = [], labels = []):
"--set=controller.allowSnippetAnnotations=true",
"--set=controller.ingressClassResource.default=true",
],
resource_deps = resource_deps,
resource_deps = [REPO_ALIAS] + resource_deps,
labels = labels or [LABEL],
)

0 comments on commit 05f7d8c

Please sign in to comment.