Skip to content

Commit b485e0c

Browse files
Fix CRDs not found issue by installing CRD from correct path
1 parent 5f222bb commit b485e0c

File tree

1 file changed

+2
-1
lines changed
  • docker/mongodb-kubernetes-tests/kubetester

1 file changed

+2
-1
lines changed

docker/mongodb-kubernetes-tests/kubetester/helm.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,8 @@ def helm_upgrade(
211211
chart_dir = helm_chart_path if helm_override_path else _helm_chart_dir(helm_chart_path)
212212

213213
if apply_crds_first:
214-
apply_crds_from_chart(chart_dir)
214+
local_helm_chart_dir = "helm_chart"
215+
apply_crds_from_chart(local_helm_chart_dir)
215216

216217
command_args = _create_helm_args(helm_args, helm_options)
217218
args = [

0 commit comments

Comments
 (0)