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
* adjust settings value examples, in YAML wrapping {} JSON blobs will
need to be done with something like single-quotes '', and have other
content escaped where applicable
Resolves: docs/adj-settings
See also: harvester/harvester#7456
Signed-off-by: Mike Russell <[email protected]>
Copy file name to clipboardExpand all lines: docs/advanced/settings.md
+32-32Lines changed: 32 additions & 32 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -68,12 +68,12 @@ Use the field `expiringInHours` to specify the validity period of each certifica
68
68
69
69
For more information, see the **Certificate Rotation** section of the [Rancher](https://ranchermanager.docs.rancher.com/how-to-guides/new-user-guides/manage-clusters/rotate-certificates) and [RKE2](https://docs.rke2.io/advanced#certificate-rotation) documentation.
@@ -151,7 +151,7 @@ For security purposes, Harvester automatically removes the username and password
151
151
}
152
152
}
153
153
}
154
-
}
154
+
}'
155
155
```
156
156
157
157
### `csi-driver-config`
@@ -169,12 +169,12 @@ You must configure the following information before using features related to ba
169
169
**Default value**:
170
170
171
171
```
172
-
{
172
+
'{
173
173
"driver.longhorn.io": {
174
174
"volumeSnapshotClassName": "longhorn-snapshot",
175
175
"backupVolumeSnapshotClassName": "longhorn"
176
176
}
177
-
}
177
+
}'
178
178
```
179
179
180
180
### `default-vm-termination-grace-period-seconds`
@@ -197,7 +197,7 @@ Changing this setting might cause single-node clusters to temporarily become una
197
197
198
198
:::
199
199
200
-
**Default value**: `{}`
200
+
**Default value**: `'{}'`
201
201
202
202
**Supported options and values**:
203
203
@@ -217,11 +217,11 @@ Harvester appends necessary addresses to user-specified `noProxy` values (for ex
217
217
**Example**:
218
218
219
219
```json
220
-
{
220
+
'{
221
221
"httpProxy": "http://my.proxy",
222
222
"httpsProxy": "https://my.proxy",
223
223
"noProxy": "some.internal.svc,172.16.0.0/16"
224
-
}
224
+
}'
225
225
```
226
226
227
227
### `log-level`
@@ -294,12 +294,12 @@ Changes to the server address list are applied to all nodes.
294
294
**Example**:
295
295
296
296
```
297
-
{
297
+
'{
298
298
"ntpServers": [
299
299
"0.suse.pool.ntp.org",
300
300
"1.suse.pool.ntp.org"
301
301
]
302
-
}
302
+
}'
303
303
```
304
304
305
305
### `overcommit-config`
@@ -308,7 +308,7 @@ Changes to the server address list are applied to all nodes.
308
308
309
309
Overcommitting is used to optimize physical resource allocation, particularly when VMs are not expected to fully consume the allocated resources most of the time. Setting values greater than 100% allows scheduling of multiple VMs even when physical resources are notionally fully allocated.
0 commit comments