File tree Expand file tree Collapse file tree 1 file changed +8
-3
lines changed
docker/mongodb-kubernetes-tests/kubetester Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Original file line number Diff line number Diff line change 55import uuid
66from typing import Dict , List , Optional , Tuple
77
8- from kubetester .consts import *
8+ from kubetester .consts import (
9+ OCI_HELM_REGION_ENV_VAR_NAME ,
10+ OCI_HELM_REGISTRY_ENV_VAR_NAME ,
11+ OCI_HELM_REPOSITORY_ENV_VAR_NAME ,
12+ OCI_HELM_VERSION ,
13+ )
914from tests import test_logger
1015
1116logger = test_logger .get_test_logger (__name__ )
1217
1318# LOCAL_CRDs_DIR is the dir where local helm chart's CRDs are copied in tests image
14- LOCAL_CRDs_DIR = "helm_chart/crds"
19+ LOCAL_CRDS_DIR = "helm_chart/crds"
1520OCI_HELM_REGISTRY_ECR = "268558157000.dkr.ecr.us-east-1.amazonaws.com"
1621
1722
@@ -215,7 +220,7 @@ def helm_upgrade(
215220 chart_dir = helm_chart_path
216221
217222 if apply_crds_first :
218- apply_crds_from_chart (LOCAL_CRDs_DIR )
223+ apply_crds_from_chart (LOCAL_CRDS_DIR )
219224
220225 command_args = _create_helm_args (helm_args , helm_options )
221226 args = [
You can’t perform that action at this time.
0 commit comments