fix(Benchmark): remove unused seeder definition

This commit is contained in:
Jake Turner 2026-01-22 21:19:21 -08:00
parent 0ecea6a732
commit bd3e28b21d
No known key found for this signature in database
GPG Key ID: 694BC38EF2ED4844

View File

@ -134,27 +134,7 @@ export default class ServiceSeeder extends BaseSeeder {
installation_status: 'idle',
is_dependency_service: false,
depends_on: null,
},
{
service_name: DockerService.BENCHMARK_SERVICE_NAME,
friendly_name: 'System Benchmark',
description: 'Measure your server performance and compare with the NOMAD community',
icon: 'IconChartBar',
container_image: 'severalnines/sysbench:latest',
container_command: null,
container_config: JSON.stringify({
HostConfig: {
AutoRemove: true,
Binds: [`${ServiceSeeder.NOMAD_STORAGE_ABS_PATH}/benchmark:/tmp/benchmark`]
},
WorkingDir: '/tmp/benchmark',
}),
ui_location: null, // UI is integrated into Command Center
installed: false,
installation_status: 'idle',
is_dependency_service: false,
depends_on: null,
},
}
]
async run() {