You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
> **Testing**: The example above uses default settings. For testing with simulated GPU nodes, use [`tilt/release/values-release.yaml`](tilt/release/values-release.yaml). For production, customize values for your environment.
96
+
> **Testing**: The example above uses default settings. For production, customize values for your environment.
97
97
98
98
> **Production**: By default, only health monitoring is enabled. Enable fault quarantine and remediation modules via Helm values. See [Configuration](#-configuration) below.
99
99
@@ -156,168 +156,58 @@ graph TB
156
156
157
157
## ⚙️ Configuration
158
158
159
-
### Global Settings
159
+
NVSentinel is highly configurable with options for each module. For complete configuration documentation, see the **[Helm Chart README](distros/kubernetes/README.md)**.
160
160
161
-
Control module enablement and behavior:
161
+
### Quick Configuration Overview
162
162
163
163
```yaml
164
164
global:
165
-
dryRun: false # Test mode - no actual actions
165
+
dryRun: false # Test mode - log actions without executing
166
166
167
167
# Health Monitors (enabled by default)
168
168
gpuHealthMonitor:
169
169
enabled: true
170
170
syslogHealthMonitor:
171
171
enabled: true
172
172
173
-
cspHealthMonitor:
174
-
enabled: false # Cloud provider integration
175
-
176
173
# Core Modules (disabled by default - enable for production)
177
-
faultQuarantineModule:
174
+
faultQuarantine:
178
175
enabled: false
179
-
nodeDrainerModule:
176
+
nodeDrainer:
180
177
enabled: false
181
-
faultRemediationModule:
178
+
faultRemediation:
182
179
enabled: false
183
-
healthEventsAnalyzer:
180
+
janitor:
184
181
enabled: false
182
+
mongodbStore:
183
+
enabled: false
185
184
```
186
185
187
-
For detailed per-module configuration, see [Module Details](#-module-details).
0 commit comments