victoriametrics: remove withVictoriaLogs option

This commit is contained in:
Marie Ramlow 2025-06-21 19:05:49 +02:00
parent b9a699fe22
commit ebfbc036ef
2 changed files with 0 additions and 8 deletions

View File

@ -9,7 +9,6 @@
withVmAuth ? true, # HTTP proxy for authentication withVmAuth ? true, # HTTP proxy for authentication
withBackupTools ? true, # vmbackup, vmrestore withBackupTools ? true, # vmbackup, vmrestore
withVmctl ? true, # vmctl is used to migrate time series withVmctl ? true, # vmctl is used to migrate time series
withVictoriaLogs ? true, # logs server
}: }:
buildGoModule (finalAttrs: { buildGoModule (finalAttrs: {
@ -43,12 +42,6 @@ buildGoModule (finalAttrs: {
++ lib.optionals withBackupTools [ ++ lib.optionals withBackupTools [
"app/vmbackup" "app/vmbackup"
"app/vmrestore" "app/vmrestore"
]
++ lib.optionals withVictoriaLogs [
"app/victoria-logs"
"app/vlinsert"
"app/vlselect"
"app/vlstorage"
]; ];
postPatch = '' postPatch = ''

View File

@ -6,7 +6,6 @@
lib.addMetaAttrs { mainProgram = "vmagent"; } ( lib.addMetaAttrs { mainProgram = "vmagent"; } (
victoriametrics.override { victoriametrics.override {
withServer = false; withServer = false;
withVictoriaLogs = false;
withVmAlert = false; withVmAlert = false;
withVmAuth = false; withVmAuth = false;
withBackupTools = false; withBackupTools = false;