Skip to content

Commit a873fe2

Browse files
committed
orchestratord test: Change upgrade order
1 parent 45bfcf2 commit a873fe2

File tree

3 files changed

+121
-80
lines changed

3 files changed

+121
-80
lines changed

ci/nightly/pipeline.template.yml

Lines changed: 22 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -2367,6 +2367,7 @@ steps:
23672367
steps:
23682368
- id: orchestratord-defaults
23692369
label: "Orchestratord test (defaults from documentation)"
2370+
artifact_paths: ["mz_debug_*.zip"]
23702371
depends_on: devel-docker-tags
23712372
timeout_in_minutes: 120
23722373
plugins:
@@ -2379,6 +2380,7 @@ steps:
23792380

23802381
- id: orchestratord-default-properties
23812382
label: "Orchestratord test (defaults for properties)"
2383+
artifact_paths: ["mz_debug_*.zip"]
23822384
depends_on: devel-docker-tags
23832385
timeout_in_minutes: 120
23842386
plugins:
@@ -2391,6 +2393,7 @@ steps:
23912393

23922394
- id: orchestratord-individual
23932395
label: "Orchestratord test (individual properties)"
2396+
artifact_paths: ["mz_debug_*.zip"]
23942397
depends_on: devel-docker-tags
23952398
timeout_in_minutes: 120
23962399
plugins:
@@ -2403,76 +2406,65 @@ steps:
24032406

24042407
- id: orchestratord-combine
24052408
label: "Orchestratord test (combine properties)"
2409+
artifact_paths: ["mz_debug_*.zip"]
24062410
depends_on: build-aarch64
2407-
timeout_in_minutes: 120
2411+
timeout_in_minutes: 60
24082412
plugins:
24092413
- ./ci/plugins/mzcompose:
24102414
composition: orchestratord
2411-
args: [--action=noop, --properties=combine, --runtime=3600, --recreate-cluster]
2415+
args: [--action=noop, --properties=combine, --runtime=1800, --recreate-cluster]
24122416
ci-builder: stable
24132417
agents:
24142418
queue: hetzner-aarch64-16cpu-32gb
24152419

24162420
- id: orchestratord-upgrade-individual
24172421
label: "Orchestratord test (upgrade, individual props)"
2422+
artifact_paths: ["mz_debug_*.zip"]
24182423
depends_on: devel-docker-tags
2419-
timeout_in_minutes: 120
2424+
timeout_in_minutes: 60
24202425
plugins:
24212426
- ./ci/plugins/mzcompose:
24222427
composition: orchestratord
2423-
args: [--action=upgrade, --properties=individual, --runtime=3600, --recreate-cluster]
2428+
args: [--action=upgrade, --properties=individual, --runtime=1800, --recreate-cluster]
24242429
ci-builder: stable
2425-
env:
2426-
# Old versions are not on GHCR yet
2427-
MZ_GHCR: 0
24282430
agents:
2429-
queue: hetzner-aarch64-8cpu-16gb
2430-
skip: "https://github.com/MaterializeInc/materialize/pull/34214"
2431+
queue: hetzner-x86-64-dedi-16cpu-64gb
24312432

24322433
- id: orchestratord-upgrade-combine
24332434
label: "Orchestratord test (upgrade, combine props)"
2435+
artifact_paths: ["mz_debug_*.zip"]
24342436
depends_on: devel-docker-tags
2435-
timeout_in_minutes: 120
2437+
timeout_in_minutes: 60
24362438
plugins:
24372439
- ./ci/plugins/mzcompose:
24382440
composition: orchestratord
2439-
args: [--action=upgrade, --properties=combine, --runtime=3600, --recreate-cluster]
2441+
args: [--action=upgrade, --properties=combine, --runtime=1800, --recreate-cluster]
24402442
ci-builder: stable
2441-
env:
2442-
# Old versions are not on GHCR yet
2443-
MZ_GHCR: 0
24442443
agents:
2445-
queue: hetzner-aarch64-8cpu-16gb
2446-
skip: "https://github.com/MaterializeInc/materialize/pull/34214"
2444+
queue: hetzner-x86-64-dedi-16cpu-64gb
24472445

24482446
- id: orchestratord-upgrade-chain-individual
24492447
label: "Orchestratord test (upgrade chain, individual props)"
2448+
artifact_paths: ["mz_debug_*.zip"]
24502449
depends_on: devel-docker-tags
2451-
timeout_in_minutes: 120
2450+
timeout_in_minutes: 60
24522451
plugins:
24532452
- ./ci/plugins/mzcompose:
24542453
composition: orchestratord
2455-
args: [--action=upgrade-chain, --properties=individual, --runtime=3600, --recreate-cluster]
2454+
args: [--action=upgrade-chain, --properties=individual, --runtime=1800, --recreate-cluster]
24562455
ci-builder: stable
2457-
env:
2458-
# Old versions are not on GHCR yet
2459-
MZ_GHCR: 0
24602456
agents:
2461-
queue: hetzner-aarch64-8cpu-16gb
2462-
skip: "https://github.com/MaterializeInc/materialize/pull/34214"
2457+
queue: hetzner-x86-64-dedi-16cpu-64gb
24632458

24642459
- id: orchestratord-upgrade-chain-combine
24652460
label: "Orchestratord test (upgrade chain, combine props)"
2461+
artifact_paths: ["mz_debug_*.zip"]
24662462
depends_on: devel-docker-tags
2467-
timeout_in_minutes: 120
2463+
timeout_in_minutes: 60
24682464
plugins:
24692465
- ./ci/plugins/mzcompose:
24702466
composition: orchestratord
2471-
args: [--action=upgrade-chain, --properties=combine, --runtime=3600, --recreate-cluster]
2467+
args: [--action=upgrade-chain, --properties=combine, --runtime=1800, --recreate-cluster]
24722468
ci-builder: stable
2473-
env:
2474-
# Old versions are not on GHCR yet
2475-
MZ_GHCR: 0
24762469
agents:
2477-
queue: hetzner-aarch64-16cpu-32gb
2478-
skip: "https://github.com/MaterializeInc/materialize/pull/34214"
2470+
queue: hetzner-x86-64-dedi-16cpu-64gb

test/orchestratord/cluster.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -164,6 +164,7 @@ nodes:
164164
image: kindest/node:v1.32.5
165165
labels:
166166
materialize.cloud/scratch-fs: "true"
167+
materialize.cloud/disk: "true"
167168
materialize.cloud/availability-zone: "2"
168169
topology.kubernetes.io/zone: "2"
169170
workload: "materialize-instance"

0 commit comments

Comments
 (0)