File tree Expand file tree Collapse file tree 5 files changed +21
-15
lines changed Expand file tree Collapse file tree 5 files changed +21
-15
lines changed Original file line number Diff line number Diff line change @@ -352,7 +352,7 @@ functions:
352
352
shell : bash
353
353
working_dir : src/github.com/mongodb/mongodb-kubernetes
354
354
script : |
355
- scripts/evergreen /run_python.sh scripts/evergreen/e2e/setup_cloud_qa.py create
355
+ scripts/dev /run_python.sh scripts/evergreen/e2e/setup_cloud_qa.py create
356
356
# The additional switch is needed, since we now have created the needed OM exports.
357
357
- *switch_context
358
358
@@ -363,7 +363,7 @@ functions:
363
363
shell : bash
364
364
working_dir : src/github.com/mongodb/mongodb-kubernetes
365
365
script : |
366
- scripts/evergreen /run_python.sh scripts/evergreen/e2e/setup_cloud_qa.py delete
366
+ scripts/dev /run_python.sh scripts/evergreen/e2e/setup_cloud_qa.py delete
367
367
368
368
dump_diagnostic_information_from_all_namespaces :
369
369
- command : subprocess.exec
Original file line number Diff line number Diff line change @@ -435,9 +435,15 @@ tasks:
435
435
- name : build_test_image_ibm
436
436
commands :
437
437
- func : clone
438
- - func : python_venv
439
- - func : setup_aws
440
- - func : download_kube_tools
438
+ - command : subprocess.exec
439
+ type : setup
440
+ params :
441
+ env :
442
+ SKIP_MINIKUBE_SETUP : " true"
443
+ working_dir : src/github.com/mongodb/mongodb-kubernetes
444
+ add_to_path :
445
+ - ${workdir}/bin
446
+ command : scripts/evergreen/setup_minikube_host.sh
441
447
- func : build_multi_cluster_binary
442
448
- func : build_test_image_ibm
443
449
Original file line number Diff line number Diff line change 160
160
"repository" : " 268558157000.dkr.ecr.us-east-1.amazonaws.com/dev/mongodb-kubernetes-tests" ,
161
161
"platforms" : [
162
162
" linux/arm64" ,
163
- " linux/amd64" ,
164
- " linux/s390x" ,
165
- " linux/ppc64le"
163
+ " linux/amd64"
166
164
]
167
165
},
168
166
"staging" : {
169
167
"repository" : " 268558157000.dkr.ecr.us-east-1.amazonaws.com/staging/mongodb-kubernetes-tests" ,
170
168
"platforms" : [
171
169
" linux/arm64" ,
172
- " linux/amd64" ,
173
- " linux/s390x" ,
174
- " linux/ppc64le"
170
+ " linux/amd64"
175
171
]
176
172
}
177
173
},
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ install_pyenv() {
12
12
echo " pyenv directory already exists, setting up environment..." >&2
13
13
export PYENV_ROOT=" ${HOME} /.pyenv"
14
14
export PATH=" ${PYENV_ROOT} /bin:${PATH} "
15
-
15
+
16
16
# Initialize pyenv in current shell
17
17
if command -v pyenv & > /dev/null; then
18
18
eval " $( pyenv init --path) "
@@ -24,7 +24,7 @@ install_pyenv() {
24
24
rm -rf " ${HOME} /.pyenv"
25
25
fi
26
26
fi
27
-
27
+
28
28
# Check if pyenv command is available in PATH
29
29
if command -v pyenv & > /dev/null; then
30
30
echo " pyenv already available in PATH" >&2
Original file line number Diff line number Diff line change @@ -39,6 +39,7 @@ run_setup_step() {
39
39
}
40
40
41
41
# Setup Python environment (needed for AWS CLI pip installation)
42
+ export GRPC_PYTHON_BUILD_SYSTEM_OPENSSL=1
42
43
export SKIP_INSTALL_REQUIREMENTS=true
43
44
run_setup_step " Python Virtual Environment" " scripts/dev/recreate_python_venv.sh"
44
45
@@ -48,8 +49,11 @@ run_setup_step "kubectl and helm Setup" "scripts/evergreen/setup_kubectl.sh"
48
49
49
50
run_setup_step " jq Setup" " scripts/evergreen/setup_jq.sh"
50
51
51
- run_setup_step " Minikube Host Setup with Container Runtime Detection" " scripts/minikube/setup_minikube_host.sh"
52
-
52
+ if [[ " ${SKIP_MINIKUBE_SETUP:- } " != " true" ]]; then
53
+ run_setup_step " Minikube Host Setup with Container Runtime Detection" " scripts/minikube/setup_minikube_host.sh"
54
+ else
55
+ echo " ⏭️ Skipping Minikube setup as SKIP_MINIKUBE_SETUP=true"
56
+ fi
53
57
export CONTAINER_RUNTIME=podman
54
58
run_setup_step " Container Registry Authentication" " scripts/dev/configure_container_auth.sh"
55
59
You can’t perform that action at this time.
0 commit comments