Skip to content

Refactors VM Schedule to make it more generic & add option to schedule min & max for autoscaling groups - #13148

Merged
harikrishna-patnala merged 13 commits into
apache:mainfrom
shapeblue:scheduled-asg-actions
Jun 24, 2026
Merged

Refactors VM Schedule to make it more generic & add option to schedule min & max for autoscaling groups#13148
harikrishna-patnala merged 13 commits into
apache:mainfrom
shapeblue:scheduled-asg-actions

Conversation

@vishesh92

@vishesh92vishesh92 commented May 12, 2026

Copy link
Copy Markdown
Member

Description

Documentation PR: apache/cloudstack-documentation#650

This PR refactors the VM schedule to make it more generic and allow creation of scheduled actions based on cron format for other resources with minimal changes. Apart from the existing schedules for VM, this PR adds support for scheduling min & max members of a autoscaling group.

Existing VM Schedule related APIs have been marked as deprecated (Used @Deprecated annotation but still available for use.).

Existing vm_schedule & related tables are renamed and reused to store schedules for different resource types (VM & ASG for now). After these changes, it should be easy to add cron based schedules to other resources like networks, VRs, etc.

Details

This pull request introduces a new, generic resource scheduling API for CloudStack, deprecating the previous VM-specific schedule commands and events. The main changes include adding new CRUD API commands for resource schedules, updating event types to support generic resource scheduling, and refactoring the event-to-entity mapping to use the new ResourceSchedule class. The changes also update the VM schedule command to use the new manager and mark it as deprecated.

Resource Scheduling API and Event Refactoring:

  • Added new API commands for resource schedule management: CreateResourceScheduleCmd, UpdateResourceScheduleCmd, DeleteResourceScheduleCmd, and ListResourceScheduleCmd, supporting schedule creation, update, deletion, and listing for any resource type. [1][2][3][4]
  • Updated event types in EventTypes.java to introduce generic resource schedule CRUD events (SCHEDULE.CREATE, SCHEDULE.UPDATE, SCHEDULE.DELETE) and reclassified VM schedule events as action-execution only. Also added an autoscale group schedule update event. [1][2]
  • Refactored event-to-entity mapping in EventTypes.java to map new schedule events to ResourceSchedule and removed references to the old VMSchedule class.
  • Updated imports and manager usage in the deprecated CreateVMScheduleCmd to use ResourceScheduleManager instead of VMScheduleManager, and marked the command as @Deprecated.
  • Changed imports in EventTypes.java to use ResourceSchedule instead of the removed VMSchedule.

New generic schedule APIs

createResourceSchedule

Creates a schedule for a supported resource type.

  • Required params
    • resourcetype (string)
    • resourceid (string; UUID or numeric ID path is resolved internally)
    • schedule (cron expression)
    • timezone (timezone string)
    • action (resource-specific action)
  • Optional params
    • description
    • startdate (defaults to current time + 1 minute if omitted)
    • enddate
    • enabled (defaults to true)
    • details (map, action/resource-specific)
  • Validation highlights
    • Invalid/unsupported resourcetype is rejected.
    • Resource must exist and be schedulable for that type.
    • action is validated by the resource worker.
    • startdate cannot be in the past; enddate cannot be in the past or before startdate.
  • Response object
    • ResourceScheduleResponse with fields: id, resourcetype, resourceid, description, schedule, timezone, action, enabled, startdate, enddate, details, created.

listResourceSchedule

Lists schedules for a given resource.

  • Required params
    • resourcetype
    • resourceid
  • Optional params
    • id
    • ids (list)
    • action
    • enabled
    • pagination (page, pagesize)
  • Behavior
    • Action filter is parsed/validated per resource type.
    • Returns list of ResourceScheduleResponse.

updateResourceSchedule

Updates an existing schedule.

  • Required params
    • id
  • Optional params
    • description
    • schedule
    • timezone
    • startdate
    • enddate
    • enabled
    • details (map)
  • Behavior
    • Supports partial updates.
    • If details is provided as an empty map, existing schedule details are removed.
    • If details is provided with entries, details are replaced/saved.
    • If details is provided as null, details are ignored.
  • Validation highlights
    • Same date/time consistency checks as create path when schedule timing fields are changed.

deleteResourceSchedule

Deletes schedule(s) scoped to a resource.

  • Required params
    • resourcetype
    • resourceid
  • Optional params
    • id
    • ids
  • Behavior
    • Removes selected schedules (or all matching schedules in scope if no specific IDs provided).

AutoScale VM Group schedule specifics (resourcetype=AutoScaleVmGroup)

  • Supported action: UPDATE.
  • details map is required and currently supports only:
    • minmembers
    • maxmembers
  • Both keys must be present and parse as integers.
  • Additional keys are rejected.
  • Min/max values are validated using AutoScale min/max member validation logic.
  • At runtime, scheduled execution triggers updateAutoScaleVmGroup with minmembers and maxmembers from schedule details.

Legacy VM schedule compatibility

Legacy VM schedule APIs remain available (deprecated wrappers):

  • createVMSchedule
  • listVMSchedule
  • updateVMSchedule
  • deleteVMSchedule

These continue to route through the same underlying resource schedule manager for VirtualMachine scheduling.

Types of changes

  • Breaking change (fix or feature that would cause existing functionality to change)
  • New feature (non-breaking change which adds functionality)
  • Bug fix (non-breaking change which fixes an issue)
  • Enhancement (improves an existing feature and functionality)
  • Cleanup (Code refactoring and cleanup, that may add test cases)
  • Build/CI
  • Test (unit or integration test code)

Feature/Enhancement Scale or Bug Severity

Feature/Enhancement Scale

  • Major
  • Minor

Bug Severity

  • BLOCKER
  • Critical
  • Major
  • Minor
  • Trivial

Screenshots (if appropriate):

How Has This Been Tested?

How did you try to break this feature and the system with this change?

@codecov

codecovBot commented May 12, 2026

Copy link
Copy Markdown

Codecov Report

❌ Patch coverage is 50.09862% with 506 lines in your changes missing coverage. Please review.
✅ Project coverage is 18.80%. Comparing base (ac6c1c8) to head (f171b83).
⚠️ Report is 5 commits behind head on main.

Files with missing linesPatch %Lines
...apache/cloudstack/schedule/BaseScheduleWorker.java41.82%113 Missing and 8 partials ⚠️
...oudstack/schedule/ResourceScheduleManagerImpl.java72.83%43 Missing and 23 partials ⚠️
...oudstack/schedule/dao/ResourceScheduleDaoImpl.java0.00%51 Missing ⚠️
...mmand/user/schedule/CreateResourceScheduleCmd.java0.00%45 Missing ⚠️
...mmand/user/schedule/UpdateResourceScheduleCmd.java0.00%34 Missing ⚠️
...command/user/schedule/ListResourceScheduleCmd.java0.00%29 Missing ⚠️
...mmand/user/schedule/DeleteResourceScheduleCmd.java0.00%24 Missing ⚠️
.../cloudstack/schedule/ResourceScheduleDetailVO.java28.00%18 Missing ⚠️
...tack/schedule/dao/ResourceScheduledJobDaoImpl.java0.00%18 Missing ⚠️
...ck/schedule/autoscale/AutoScaleScheduleWorker.java71.87%10 Missing and 8 partials ⚠️
... and 14 more
Additional details and impacted files
@@ Coverage Diff @@## main #13148 +/- ##
============================================
+ Coverage 18.76% 18.80% +0.03% - Complexity 17987 18063 +76 
============================================
Files 6164 6173 +9 Lines 552900 553378 +478 Branches 67385 67421 +36 ============================================
+ Hits 103765 104037 +272 - Misses 437726 437917 +191 - Partials 11409 11424 +15 
FlagCoverage Δ
uitests3.53% <ø> (-0.01%)⬇️
unittests19.99% <50.09%> (+0.03%)⬆️

Flags with carried forward coverage won't be shown. Click here to find out more.

☔ View full report in Codecov by Harness.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

CopilotAI left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

This PR generalizes the existing VM scheduling feature into a resource-agnostic “Resource Schedule” system (API, persistence, workers, and UI), while keeping legacy VM schedule APIs as deprecated wrappers.

Changes:

  • Introduces generic create/list/update/deleteResourceSchedule APIs with a worker-based execution model (BaseScheduleWorker + VMScheduleWorker).
  • Migrates DB schema from vm_schedule / vm_scheduled_job to resource_schedule / resource_scheduled_job and adds resource_schedule_details.
  • Updates the UI and integration/unit tests to use the new resource schedule APIs (with legacy VM schedule APIs mapped to the new backend).

Reviewed changes

Copilot reviewed 52 out of 52 changed files in this pull request and generated 3 comments.

Show a summary per file
FileDescription
ui/src/views/compute/ResourceSchedules.vueRefactors schedule UI to operate on generic resources and new resource schedule APIs.
ui/src/views/compute/InstanceTab.vueSwitches VM “Schedules” tab to listResourceSchedule and the new ResourceSchedules component.
ui/src/components/view/ListView.vueReplaces hardcoded VM schedule action buttons with a reusable slot (scheduleActions).
ui/public/locales/te.jsonUpdates UI strings/keys for generalized schedule actions and messages.
ui/public/locales/en.jsonUpdates UI strings/keys for generalized schedule actions and messages.
tools/marvin/marvin/lib/base.pyAdds Marvin ResourceSchedule helper for creating/listing/updating/deleting schedules.
tools/apidoc/gen_toc.pyAdds TOC category entry for Resource Schedule APIs.
test/integration/smoke/test_vm_schedule.pyMigrates integration tests from VMSchedule to ResourceSchedule.
server/src/test/java/org/apache/cloudstack/schedule/vm/VMScheduleWorkerTest.javaAdds unit tests for the VM schedule worker built on the generic scheduler.
server/src/test/java/org/apache/cloudstack/schedule/ResourceScheduleManagerImplTest.javaAdds unit tests for the new generic schedule manager.
server/src/main/resources/META-INF/cloudstack/core/spring-server-core-managers-context.xmlWires ResourceScheduleManagerImpl and VMScheduleWorker beans.
server/src/main/java/org/apache/cloudstack/schedule/vm/VMScheduleWorker.javaImplements VM-specific scheduling logic on top of BaseScheduleWorker.
server/src/main/java/org/apache/cloudstack/schedule/ResourceScheduleManagerImpl.javaImplements generic schedule create/list/update/delete and worker dispatching.
server/src/main/java/org/apache/cloudstack/schedule/BaseScheduleWorker.javaIntroduces shared polling/scheduling/execution framework for resource schedulers.
server/src/main/java/com/cloud/vm/UserVmManagerImpl.javaEnsures schedules are removed when expunging a VM (via ResourceScheduleManager).
engine/schema/src/main/resources/META-INF/db/schema-42210to42300.sqlDB migration to resource schedule tables + config/event type renames.
engine/schema/src/main/resources/META-INF/cloudstack/core/spring-engine-schema-core-daos-context.xmlReplaces VM schedule DAO beans with resource schedule DAO beans.
engine/schema/src/main/java/org/apache/cloudstack/schedule/ResourceScheduleVO.javaNew ResourceScheduleVO entity replacing VMScheduleVO with resource typing.
engine/schema/src/main/java/org/apache/cloudstack/schedule/ResourceScheduledJobVO.javaNew ResourceScheduledJobVO entity replacing VMScheduledJobVO with resource typing.
engine/schema/src/main/java/org/apache/cloudstack/schedule/ResourceScheduleDetailVO.javaAdds persistent “details” storage for action-specific scheduling parameters.
engine/schema/src/main/java/org/apache/cloudstack/schedule/dao/ResourceScheduledJobDaoImpl.javaImplements scheduled job DAO for resource scheduler.
engine/schema/src/main/java/org/apache/cloudstack/schedule/dao/ResourceScheduledJobDao.javaDefines scheduled job DAO interface for resource scheduler.
engine/schema/src/main/java/org/apache/cloudstack/schedule/dao/ResourceScheduleDetailsDaoImpl.javaImplements details DAO for resource schedule details.
engine/schema/src/main/java/org/apache/cloudstack/schedule/dao/ResourceScheduleDetailsDao.javaDefines details DAO interface for resource schedule details.
engine/schema/src/main/java/org/apache/cloudstack/schedule/dao/ResourceScheduleDaoImpl.javaImplements schedule DAO for resource schedule entity.
engine/schema/src/main/java/org/apache/cloudstack/schedule/dao/ResourceScheduleDao.javaDefines schedule DAO interface for resource schedules.
api/src/test/java/org/apache/cloudstack/api/command/user/vm/UpdateVMScheduleCmdTest.javaUpdates legacy VM schedule cmd test to use ResourceScheduleManager under the hood.
api/src/test/java/org/apache/cloudstack/api/command/user/vm/ListVMScheduleCmdTest.javaUpdates legacy VM schedule list cmd test to translate from ResourceScheduleResponse.
api/src/test/java/org/apache/cloudstack/api/command/user/vm/DeleteVMScheduleCmdTest.javaUpdates legacy VM schedule delete cmd test to use generic manager.
api/src/test/java/org/apache/cloudstack/api/command/user/vm/CreateVMScheduleCmdTest.javaUpdates legacy VM schedule create cmd test to use generic manager.
api/src/main/java/org/apache/cloudstack/schedule/vm/VMScheduleAction.javaIntroduces VM action enum implementing generic ResourceSchedule.Action.
api/src/main/java/org/apache/cloudstack/schedule/ResourceScheduleManager.javaDefines the new generic scheduling manager interface.
api/src/main/java/org/apache/cloudstack/schedule/ResourceScheduledJob.javaDefines the new generic scheduled job API interface.
api/src/main/java/org/apache/cloudstack/schedule/ResourceSchedule.javaDefines the new generic schedule API interface and action contract.
api/src/main/java/org/apache/cloudstack/api/response/VMScheduleResponse.javaRetargets entity reference + adds adapter ctor from ResourceScheduleResponse.
api/src/main/java/org/apache/cloudstack/api/response/ResourceScheduleResponse.javaAdds the new generic schedule response object.
api/src/main/java/org/apache/cloudstack/api/command/user/vm/UpdateVMScheduleCmd.javaDeprecates VM cmd and forwards updates to ResourceScheduleManager.
api/src/main/java/org/apache/cloudstack/api/command/user/vm/ListVMScheduleCmd.javaDeprecates VM cmd and forwards listing to ResourceScheduleManager.
api/src/main/java/org/apache/cloudstack/api/command/user/vm/DeleteVMScheduleCmd.javaDeprecates VM cmd and forwards deletion to ResourceScheduleManager.
api/src/main/java/org/apache/cloudstack/api/command/user/vm/CreateVMScheduleCmd.javaDeprecates VM cmd and forwards creation to ResourceScheduleManager.
api/src/main/java/org/apache/cloudstack/api/command/user/schedule/UpdateResourceScheduleCmd.javaAdds update API command for generic resource schedules.
api/src/main/java/org/apache/cloudstack/api/command/user/schedule/ListResourceScheduleCmd.javaAdds list API command for generic resource schedules.
api/src/main/java/org/apache/cloudstack/api/command/user/schedule/DeleteResourceScheduleCmd.javaAdds delete API command for generic resource schedules.
api/src/main/java/org/apache/cloudstack/api/command/user/schedule/CreateResourceScheduleCmd.javaAdds create API command for generic resource schedules.
api/src/main/java/com/cloud/event/EventTypes.javaIntroduces generic schedule CRUD event types and remaps schedule events to ResourceSchedule.
Comments suppressed due to low confidence (2)

ui/src/views/compute/ResourceSchedules.vue:346

  • apiParams is populated only from createResourceSchedule. If a role can list schedules but cannot create them, $getApiParams('createResourceSchedule') returns {}, and the template’s apiParams.<param>.description accesses will throw even though the “Add” button is disabled. Consider populating apiParams from whichever schedule API is available (e.g. create/update) and/or guarding template access with optional chaining / defaults so the tab can render read-only.
    ui/src/views/compute/ResourceSchedules.vue:375
  • The watcher on resource is deep: true, so any reactive change inside the resource object (e.g. VM state updates) will re-trigger fetchSchedules() and can cause unnecessary API traffic. Watching only resource.id (or using a shallow watch) should be sufficient and avoids repeated list calls.

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

This comment was marked as outdated.

@vishesh92
vishesh92 requested a review from CopilotMay 13, 2026 10:40

CopilotAI left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Copilot reviewed 59 out of 59 changed files in this pull request and generated 1 comment.

Comments suppressed due to low confidence (3)

ui/src/views/compute/InstanceTab.vue:1

  • This import points to ResourceSchedules.vue, but the refactor shown updates ui/src/views/compute/InstanceSchedules.vue in-place (including setting name: 'ResourceSchedules'). If ResourceSchedules.vue is not actually present/renamed in the filesystem, the UI will fail to build. Either rename InstanceSchedules.vue to ResourceSchedules.vue (updating routes/async imports too) or adjust imports to the actual file path.
    server/src/main/java/com/cloud/network/as/AutoScaleManagerImpl.java:1
  • The exception message is missing a space after ) in ")cannot be greater than", producing a user-facing typo. Update the string to include the missing space (and consider also standardizing the message format with the other validation errors).
    tools/marvin/marvin/lib/base.py:1
  • This uses a list comprehension purely for side effects, which is discouraged and makes intent less clear. Replace it with a simple for k, v in kwargs.items(): setattr(cmd, k, v) loop.

@vishesh92

Copy link
Copy Markdown
MemberAuthor

@blueorangutan package

@blueorangutan

Copy link
Copy Markdown

@vishesh92 a [SL] Jenkins job has been kicked to build packages. It will be bundled with no SystemVM templates. I'll keep you posted as I make progress.

@blueorangutan

Copy link
Copy Markdown

Packaging result [SF]: ✔️ el8 ✔️ el9 ✔️ el10 ✔️ debian ✔️ suse15. SL-JID 17842

@vishesh92

Copy link
Copy Markdown
MemberAuthor

@blueorangutan package

@blueorangutan

Copy link
Copy Markdown

@vishesh92 a [SL] Jenkins job has been kicked to build packages. It will be bundled with no SystemVM templates. I'll keep you posted as I make progress.

@blueorangutan

Copy link
Copy Markdown

Packaging result [SF]: ✔️ el8 ✔️ el9 ✔️ el10 ✔️ debian ✔️ suse15. SL-JID 17843

@vishesh92

Copy link
Copy Markdown
MemberAuthor

@blueorangutan test

@blueorangutan

Copy link
Copy Markdown

@vishesh92 a [SL] Trillian-Jenkins test job (ol8 mgmt + kvm-ol8) has been kicked to run smoke tests

@blueorangutan

Copy link
Copy Markdown

[SF] Trillian test result (tid-16263)
Environment: kvm-ol8 (x2), zone: Advanced Networking with Mgmt server ol8
Total time taken: 90384 seconds
Marvin logs: https://github.com/blueorangutan/acs-prs/releases/download/trillian/pr13148-t16263-kvm-ol8.zip
Smoke tests completed. 141 look OK, 10 have errors, 0 did not run
Only failed and skipped tests results shown below:

TestResultTime (s)Test File
test_10_attachAndDetach_isoFailure1514.10test_vm_life_cycle.py
ContextSuite context=TestMigrateVMStrictTags>:setupError0.00test_vm_strict_host_tags.py
ContextSuite context=TestRestoreVMStrictTags>:setupError0.00test_vm_strict_host_tags.py
ContextSuite context=TestScaleVMStrictTags>:setupError0.00test_vm_strict_host_tags.py
ContextSuite context=TestVMDeploymentPlannerStrictTags>:setupError0.00test_vm_strict_host_tags.py
test_04_deploy_vnf_applianceError314.04test_vnf_templates.py
test_06_download_detached_volumeError310.86test_volumes.py
ContextSuite context=TestVPCConserveModeRules>:setupError0.00test_vpc_conserve_mode.py
ContextSuite context=TestIpv6Vpc>:setupError0.00test_vpc_ipv6.py
ContextSuite context=TestVPCRedundancy>:setupError0.00test_vpc_redundant.py
ContextSuite context=TestVPCNics>:setupError0.00test_vpc_router_nics.py
ContextSuite context=TestRVPCSite2SiteVpn>:setupError0.00test_vpc_vpn.py
ContextSuite context=TestVPCSite2SiteVPNMultipleOptions>:setupError0.00test_vpc_vpn.py
ContextSuite context=TestVpcRemoteAccessVpn>:setupError0.00test_vpc_vpn.py
ContextSuite context=TestVpcSite2SiteVpn>:setupError0.00test_vpc_vpn.py
test_disable_oobm_ha_state_ineligibleError1514.71test_hostha_kvm.py

@github-actions

Copy link
Copy Markdown

This pull request has merge conflicts. Dear author, please fix the conflicts and sync your branch with the base branch.

@vishesh92

Copy link
Copy Markdown
MemberAuthor

@blueorangutan package

@blueorangutan

Copy link
Copy Markdown

@vishesh92 a [SL] Jenkins job has been kicked to build packages. It will be bundled with no SystemVM templates. I'll keep you posted as I make progress.

@blueorangutan

Copy link
Copy Markdown

Packaging result [SF]: ✔️ el8 ✔️ el9 ✔️ el10 ✔️ debian ✔️ suse15. SL-JID 18275

@DaanHooglandDaanHoogland left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

clgtm

@kiranchavalakiranchavala left a comment

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM tested manually and scheduled autoscaling works fine

Test Case ExecutionResult
Execute the api createResourceSchedulePass
Execute the api listResourceSchedulePass
Execute the api updateResourceSchedulePass
Execute the api deleteResourceSchedulePass
Validate Multiple schedules for a AutoScale groupPass
Test the legacy api createVMSchedulePass
Test the legacy listVMSchedule api callPass
Test the legacy api updateVMSchedulePass
Test the legacy deleteVMSchedule api callPass
Validate the events generated for Autoscale schedulePass
The vm schedule is not listed for vm which are part of the Autoscaling groupPass

@weizhouapache

Copy link
Copy Markdown
Member

LGTM tested manually and scheduled autoscaling works fine

Test Case Execution Result
Execute the api createResourceSchedule Pass
Execute the api listResourceSchedule Pass
Execute the api updateResourceSchedule Pass
Execute the api deleteResourceSchedule Pass
Validate Multiple schedules for a AutoScale group Pass
Test the legacy api createVMSchedule Pass
Test the legacy listVMSchedule api call Pass
Test the legacy api updateVMSchedule Pass
Test the legacy deleteVMSchedule api call Pass
Validate the events generated for Autoscale schedule Pass
The vm schedule is not listed for vm which are part of the Autoscaling group Pass

great, thanks @kiranchavala

moving to "Ready for review"

@weizhouapache
weizhouapache marked this pull request as ready for review June 19, 2026 06:49
CopilotAI review requested due to automatic review settings June 19, 2026 06:49

CopilotAI left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copilot was unable to review this pull request because the user who requested the review has reached their quota limit.

@DaanHoogland

Copy link
Copy Markdown
Contributor

@blueorangutan test

@blueorangutan

Copy link
Copy Markdown

@DaanHoogland a [SL] Trillian-Jenkins test job (ol8 mgmt + kvm-ol8) has been kicked to run smoke tests

@blueorangutan

Copy link
Copy Markdown

[SF] Trillian Build Failed (tid-16371)

@weizhouapache

Copy link
Copy Markdown
Member

@blueorangutan package

@blueorangutan

Copy link
Copy Markdown

@weizhouapache a [SL] Jenkins job has been kicked to build packages. It will be bundled with no SystemVM templates. I'll keep you posted as I make progress.

@blueorangutan

Copy link
Copy Markdown

Packaging result [SF]: ✔️ el8 ✔️ el9 ✔️ el10 ✔️ debian ✔️ suse15. SL-JID 18348

@DaanHoogland

Copy link
Copy Markdown
Contributor

@blueorangutan test

@blueorangutan

Copy link
Copy Markdown

@DaanHoogland a [SL] Trillian-Jenkins test job (ol8 mgmt + kvm-ol8) has been kicked to run smoke tests

@harikrishna-patnala
harikrishna-patnala merged commit 82986f6 into apache:mainJun 24, 2026
27 checks passed
@harikrishna-patnala
harikrishna-patnala deleted the scheduled-asg-actions branch June 24, 2026 11:41
@blueorangutan

Copy link
Copy Markdown

[SF] Trillian test result (tid-16420)
Environment: kvm-ol8 (x2), zone: Advanced Networking with Mgmt server ol8
Total time taken: 49718 seconds
Marvin logs: https://github.com/blueorangutan/acs-prs/releases/download/trillian/pr13148-t16420-kvm-ol8.zip
Smoke tests completed. 151 look OK, 0 have errors, 0 did not run
Only failed and skipped tests results shown below:

TestResultTime (s)Test File

Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

8 participants

@vishesh92@blueorangutan@weizhouapache@DaanHoogland@kiranchavala@harikrishna-patnala@sureshanaparti