Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions docs/advanced/settings.md
Original file line number Diff line number Diff line change
Expand Up @@ -934,14 +934,17 @@ When the state of the node changes to `Not Ready`, the VM is force deleted and r

When the node becomes unavailable or is powered off, the VM only restarts and does not migrate.

**Default value**: `{"enable":true, "period":300}`
- `period`: Number of seconds Harvester waits before adding the `kubevirt.io/drain` taint to the failed nodes. This option triggers the migration of the virtual machine.
- `vmMigrationTimeout`: Number of seconds Harvester waits before adding the `node.kubernetes.io/out-of-service` taint to the failed nodes. This option forces cleanup of the orphan resources.

**Example**:
**Default value**: `{"enable":true, "period":15, "vmMigrationTimeout": 180}`

**Example**:
```json
{
"enable": "true",
"period": 300
"period": 15,
"vmMigrationTimeout": 180
}
```

Expand Down
9 changes: 6 additions & 3 deletions versioned_docs/version-v1.7/advanced/settings.md
Original file line number Diff line number Diff line change
Expand Up @@ -934,14 +934,17 @@ When the state of the node changes to `Not Ready`, the VM is force deleted and r

When the node becomes unavailable or is powered off, the VM only restarts and does not migrate.

**Default value**: `{"enable":true, "period":300}`
- `period`: Number of seconds Harvester waits before adding the `kubevirt.io/drain` taint to the failed nodes. This option triggers the migration of the virtual machine.
- `vmMigrationTimeout`: Number of seconds Harvester waits before adding the `node.kubernetes.io/out-of-service` taint to the failed nodes. This option forces cleanup of the orphan resources.

**Example**:
**Default value**: `{"enable":true, "period":15, "vmMigrationTimeout": 180}`

**Example**:
```json
{
"enable": "true",
"period": 300
"period": 15,
"vmMigrationTimeout": 180
}
```

Expand Down