Skip to content

Commit 14bb2a0

Browse files
committed
make review changes
1 parent 1c8f00e commit 14bb2a0

File tree

1 file changed

+8
-3
lines changed
  • docker/mongodb-kubernetes-tests/kubetester

1 file changed

+8
-3
lines changed

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

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,18 @@
55
import uuid
66
from 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+
)
914
from tests import test_logger
1015

1116
logger = 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"
1520
OCI_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 = [

0 commit comments

Comments
 (0)