Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,8 @@ def test_migrate_architecture(mongodb_multi: MongoDBMulti, member_cluster_client
mongodb_multi.load()
assert mongodb_multi["metadata"]["annotations"]["mongodb.com/v1.architecture"] == target_architecture

mongodb_multi.assert_abandons_phase(Phase.Running, timeout=1000)
mongodb_multi.assert_reaches_phase(Phase.Running, timeout=1000)
mongodb_multi.assert_abandons_phase(Phase.Running, timeout=1800)
mongodb_multi.assert_reaches_phase(Phase.Running, timeout=1800)

statefulsets = mongodb_multi.read_statefulsets(member_cluster_clients)
for statefulset in statefulsets.values():
Expand Down
2 changes: 1 addition & 1 deletion scripts/dev/setup_kind_cluster.sh
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ metrics_server_version="v0.7.2"

reg_name='kind-registry'
reg_port='5000'
kind_image="${registry}/kindest/node:v1.32.2@sha256:f226345927d7e348497136874b6d207e0b32cc52154ad8323129352923a3142f"
kind_image="${registry}/kindest/node:v1.33.2@sha256:c55080dc5be4f2cc242e6966fdf97bb62282e1cd818a28223cf536db8b0fddf4"

usage() {
echo "Deploy local registry and create kind cluster configured to use this registry. Local Docker registry is deployed at localhost:5000.
Expand Down
2 changes: 1 addition & 1 deletion scripts/evergreen/setup_kind.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ os=$(uname | tr '[:upper:]' '[:lower:]')
# Detect architecture
arch_suffix=$(detect_architecture)
# This should be changed when needed
latest_version="v0.27.0"
latest_version="v0.29.0"

# Only proceed with installation if architecture is supported (amd64 or arm64)
if [[ "${arch_suffix}" == "amd64" || "${arch_suffix}" == "arm64" ]]; then
Expand Down