Skip to content

Commit 3ff9a41

Browse files
committed
Add AUTH + SSL to bootstrap orchestration
1 parent 7617ac6 commit 3ff9a41

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.evergreen/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ functions:
228228
- command: subprocess.exec
229229
params:
230230
binary: bash
231-
include_expansions_in_env: ["VERSION", "TOPOLOGY", "ORCHESTRATION_FILE", "LOAD_BALANCER"]
231+
include_expansions_in_env: ["VERSION", "TOPOLOGY", "AUTH", "SSL", "ORCHESTRATION_FILE", "LOAD_BALANCER"]
232232
args:
233233
- src/.evergreen/scripts/run-with-env.sh
234234
- src/.evergreen/scripts/bootstrap-mongo-orchestration.sh

.evergreen/scripts/bootstrap-mongo-orchestration.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,10 @@ if [ -n "${skip_crypt_shared}" ]; then
3333
export SKIP_CRYPT_SHARED=1
3434
fi
3535

36-
MONGODB_VERSION=${VERSION:-} \
37-
TOPOLOGY=${TOPOLOGY:-} \
38-
AUTH=${AUTH:-noauth} \
39-
SSL=${SSL:-nossl} \
36+
MONGODB_VERSION=${VERSION} \
37+
TOPOLOGY=${TOPOLOGY} \
38+
AUTH=${AUTH} \
39+
SSL=${SSL} \
4040
STORAGE_ENGINE=${STORAGE_ENGINE:-} \
4141
DISABLE_TEST_COMMANDS=${DISABLE_TEST_COMMANDS:-} \
4242
ORCHESTRATION_FILE=${ORCHESTRATION_FILE:-} \

0 commit comments

Comments
 (0)