chore: remove mock.env.good and improve gitignore patterns

This commit is contained in:
rcourtman
2025-09-30 15:23:38 +00:00
parent f068255d7a
commit 4e438dfc3d
2 changed files with 1 additions and 32 deletions
+1 -1
View File
@@ -107,7 +107,7 @@ scripts/run-tests.sh
scripts/TEST_*.md
# Mock mode files (local development only)
mock.env
mock.env*
internal/monitoring/mock_integration.go
internal/monitoring/mock_stub.go
scripts/mock-dev.sh
-31
View File
@@ -1,31 +0,0 @@
# Mock Mode Configuration for Pulse Development
# This file is local-only and not committed to the repository
# Enable/disable mock mode (true/false)
PULSE_MOCK_MODE=true
# Number of mock nodes to generate
PULSE_MOCK_NODES=7
# Number of VMs per node
PULSE_MOCK_VMS_PER_NODE=5
# Number of LXC containers per node
PULSE_MOCK_LXCS_PER_NODE=8
# Enable random metric changes over time (true/false)
PULSE_MOCK_RANDOM_METRICS=true
# Percentage of guests that should be stopped (0-100)
PULSE_MOCK_STOPPED_PERCENT=20
# Test different node count scenarios:
# - 1-4 nodes: Regular cards (already tested)
# - 5-9 nodes: Compact cards (default: 7)
# - 10+ nodes: Ultra-compact list
# Examples for different scenarios:
# Small setup: PULSE_MOCK_NODES=3
# Medium setup: PULSE_MOCK_NODES=7 (default)
# Large setup: PULSE_MOCK_NODES=15
# Huge setup: PULSE_MOCK_NODES=25