Skip to content

Commit fbd698c

Browse files
committed
DOCS-3174: Update machine settings
1 parent 1dae37f commit fbd698c

File tree

3 files changed

+224
-264
lines changed

3 files changed

+224
-264
lines changed

docs/manage/fleet/provision/setup.md

+16-16
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ Create a file called <FILE>viam-provisioning.json</FILE> with the following form
187187
"model": "<NAME>", # the machine's model
188188
"fragment_id": "<ID>", # the fragment id, required for mobile app
189189
"hotspot_prefix": "<PREFIX>", # machine creates a hotspot during setup
190-
"disable_dns_redirect": true, # disable if using a mobile app
190+
"disable_captive_portal_redirect": false, # disable if using a mobile app
191191
"hotspot_password": "<PASSWORD>", # password for the hotspot
192192
"networks" : []
193193
}
@@ -202,11 +202,11 @@ Create a file called <FILE>viam-provisioning.json</FILE> with the following form
202202
"model": "C-3PO",
203203
"fragment_id": "2567c87d-7aef-41bc-b82c-d363f9874663",
204204
"hotspot_prefix": "skywalker-setup",
205-
"disable_dns_redirect": true,
205+
"disable_captive_portal_redirect": false,
206206
"hotspot_password": "skywalker123",
207-
"roaming_mode": false,
208-
"offline_timeout": "3m30s",
209-
"user_timeout": "2m30s",
207+
"turn_on_hotspot_if_wifi_has_no_internet": false,
208+
"offline_before_starting_hotspot_minutes": "3m30s",
209+
"user_idle_minutes": "2m30s",
210210
"fallback_timeout": "15m"
211211
}
212212
```
@@ -228,10 +228,10 @@ It also configures timeouts to control how long `viam-agent` waits for a valid l
228228
| `hotspot_interface` | string | Optional | The interface to use for hotspot/provisioning/wifi management. Default: first discovered 802.11 device. |
229229
| `hotspot_prefix` | string | Optional | `viam-agent` will prepend this to the hostname of the device and use the resulting string for the provisioning hotspot SSID. Default: `"viam-setup"`. |
230230
| `hotspot_password` | string | Optional | The Wifi password for the provisioning hotspot. Default: `"viamsetup"`. |
231-
| `disable_dns_redirect` | boolean | Optional | By default, ALL DNS lookups using the provisioning hotspot will redirect to the device. This causes most phones/mobile devices to automatically redirect the user to the captive portal as a "sign in" screen. When disabled, only domains ending in .setup (ex: viam.setup) will be redirected. This generally avoids displaying the portal to users and is mainly used in conjunction with a mobile provisioning application workflow. Default: `false`. |
232-
| `roaming_mode` | boolean | Optional | By default, the device will only attempt to connect to a single wifi network (the one with the highest priority), provided during initial provisioning/setup using the provisioning mobile app or captive web portal. Wifi connection alone is enough to consider the device as "online" even if the global internet is not reachable. If the primary network configured during provisioning cannot be connected to and roaming mode is enabled, the device will attempt connections to all configured networks in `networks`, and only consider the device online if the internet is reachable. Default: `false`. |
233-
| `offline_timeout` | boolean | Optional | Will only enter provisioning mode (hotspot) after being disconnected longer than this time. Useful on flaky connections, or when part of a system where the device may start quickly, but the wifi/router may take longer to be available. Default: `"2m"` (2 minutes). |
234-
| `user_timeout` | boolean | Optional | Amount of time before considering a user (using the captive web portal or provisioning app) idle, and resuming normal behavior. Used to avoid interrupting provisioning mode (for example for network tests/retries) when a user might be busy entering details. Default: `"5m"` (5 minutes). |
231+
| `disable_captive_portal_redirect` | boolean | Optional | By default, ALL DNS lookups using the provisioning hotspot will redirect to the device. This causes most phones/mobile devices to automatically redirect the user to the captive portal as a "sign in" screen. When disabled, only domains ending in .setup (ex: viam.setup) will be redirected. This generally avoids displaying the portal to users and is mainly used in conjunction with a mobile provisioning application workflow. Default: `false`. |
232+
| `turn_on_hotspot_if_wifi_has_no_internet` | boolean | Optional | By default, the device will only attempt to connect to a single wifi network (the one with the highest priority), provided during initial provisioning/setup using the provisioning mobile app or captive web portal. Wifi connection alone is enough to consider the device as "online" even if the global internet is not reachable. If the primary network configured during provisioning cannot be connected to and roaming mode is enabled, the device will attempt connections to all configured networks in `networks`, and only consider the device online if the internet is reachable. Default: `false`. |
233+
| `offline_before_starting_hotspot_minutes` | integer | Optional | Will only enter provisioning mode (hotspot) after being disconnected longer than this time. Useful on flaky connections, or when part of a system where the device may start quickly, but the wifi/router may take longer to be available. Default: `2` (2 minutes). |
234+
| `user_idle_minutes` | integer | Optional | Amount of time before considering a user (using the captive web portal or provisioning app) idle, and resuming normal behavior. Used to avoid interrupting provisioning mode (for example for network tests/retries) when a user might be busy entering details. Default: `5` (5 minutes). |
235235
| `fallback_timeout` | boolean | Optional | Provisioning mode will exit after this time, to allow other unmanaged (for example wired) or manually configured connections to be tried. Provisioning mode will restart if the connection/online status doesn't change. Default: `"10m"` (10 minutes). |
236236
| `networks` | array | Optional | Add additional networks the machine can connect to for provisioning. We recommend that you add WiFi settings in the operating system (for example, directly in NetworkManager) rather than in this file, or in the corresponding machine config in the Viam app, if networks aren't needed until after initial provisioning. See [Networks](/manage/reference/viam-agent/#networks). Default: `[]`. |
237237
| `wifi_power_save` | boolean | Optional | If set, will explicitly enable or disable power save for all WiFi connections managed by NetworkManager. |
@@ -251,10 +251,10 @@ If you know in advance which other networks a machine should be able to connect
251251
However, if you want to add additional networks to the provisioning configuration you can add them to the `networks` field value.
252252

253253
{{< alert title="Important" color="note" >}}
254-
You must enable `roaming_mode` in the [`agent-provisioning` configuration](/manage/fleet/provision/setup/#configure-agent-provisioning) of the machine to allow the machine to connect to the specified networks after provisioning.
254+
You must enable `turn_on_hotspot_if_wifi_has_no_internet` in the [`agent-provisioning` configuration](/manage/fleet/provision/setup/#configure-agent-provisioning) of the machine to allow the machine to connect to the specified networks after provisioning.
255255
{{< /alert >}}
256256

257-
If `roaming_mode` is enabled, `agent-provisioning` will try to connect to each specified network in order of `priority` from highest to lowest.
257+
If `turn_on_hotspot_if_wifi_has_no_internet` is enabled, `agent-provisioning` will try to connect to each specified network in order of `priority` from highest to lowest.
258258

259259
<!-- prettier-ignore -->
260260
| Name | Type | Description |
@@ -272,13 +272,13 @@ The following configuration defines the connection information and credentials f
272272
"model": "C-3PO",
273273
"fragment_id": "2567c87d-7aef-41bc-b82c-d363f9874663",
274274
"hotspot_prefix": "skywalker-setup",
275-
"disable_dns_redirect": true,
275+
"disable_captive_portal_redirect": false,
276276
"hotspot_password": "skywalker123",
277-
"roaming_mode": false,
278-
"offline_timeout": "3m30s",
279-
"user_timeout": "2m30s",
277+
"turn_on_hotspot_if_wifi_has_no_internet": false,
278+
"offline_before_starting_hotspot_minutes": "3m30s",
279+
"user_idle_minutes": "2m30s",
280280
"fallback_timeout": "15m",
281-
"roaming_mode": true,
281+
"turn_on_hotspot_if_wifi_has_no_internet": true,
282282
"networks": [
283283
{
284284
"type": "wifi",

docs/manage/fleet/system-settings.md

+36-73
Original file line numberDiff line numberDiff line change
@@ -16,30 +16,27 @@ The `viam-agent` configuration allows you to configure:
1616
## Manage OS package updates
1717

1818
By default, the configuration in <FILE>/etc/apt/apt.conf.d/</FILE> determines the behavior for updating operating system packages.
19-
To manage OS package updates using Viam, add an `"agent-syscfg"` object to the `"agent"` object in the machine's JSON configuration, if it doesn't already exist.
20-
Then, add the `"upgrades"` field in its attributes:
19+
To manage OS package updates using Viam, add an `"system_configuration"` object to the `"agent"` object in the machine's JSON configuration, if it doesn't already exist.
20+
Then, add the `"os_auto_upgrade_type"` field in its attributes:
2121

2222
```json
2323
"agent": {
24-
"agent-syscfg": {
25-
"release_channel": "stable",
26-
"attributes": {
27-
"upgrades": {
28-
"type": "all|security|disabled"
29-
}
30-
}
24+
"system_configuration": {
25+
"os_auto_upgrade_type": "security"
3126
}
3227
}
3328
```
3429

35-
When the `type` attribute is specified for `"upgrades"`, `viam-agent` will install the `unattended-upgrades` package and replace `20auto-upgrades` and `50unattended-upgrades` in <FILE>/etc/apt/apt.conf.d/</FILE> with an Origins-Pattern list generated automatically from configured repositories on the system.
30+
When the `os_auto_upgrade_type` is set, `viam-agent` will install the `unattended-upgrades` package and replace `20auto-upgrades` and `50unattended-upgrades` in <FILE>/etc/apt/apt.conf.d/</FILE> with an Origins-Pattern list generated automatically from configured repositories on the system.
3631
Custom repos installed on the system at the time the setting is enabled will be included.
3732

38-
You can set automatic upgrades for all packages by setting the field value to `{ "type": "all" }`.
39-
Alternatively, you can set automatic upgrades for only packages containing `"security"` in their codename (for example `bookworm-security`), by setting the field value to `{ "type": "security" }`.
40-
To disable automatic upgrades, set the field value to `{ "type": "disabled" }`.
33+
You can set automatic upgrades to the following options:
34+
35+
- `"all"`: automatic upgrades are performed for all packages
36+
- `"security"`: automatic upgrades for only packages containing `"security"` in their codename (for example `bookworm-security`)
37+
- `""`: disable automatic upgrades
4138

42-
For complete reference information, see [viam-agent](/manage/reference/viam-agent/#agent-syscfg).
39+
For complete reference information, see [viam-agent](/manage/reference/viam-agent/#system_configuration).
4340

4441
## Configure networks
4542

@@ -48,8 +45,7 @@ By default, your machine can connect to networks added at the operating system l
4845
For an already-online device, you can add new WiFi networks by updating the `"agent"` value in the machine's JSON configuration.
4946
This is primarily useful for a machine that moves between different networks, so the machine can automatically connect when moved between locations.
5047

51-
To add networks, add the `networks` field to the `agent-provisioning`'s `attributes` object and set `"roaming_mode": true`.
52-
You may need to add the `agent-provisioning` object to the `agent` object if it doesn't already exist.
48+
To add networks, add or update the `additional_networks` field to the `agent` object and set `"turn_on_hotspot_if_wifi_has_no_internet": true`.
5349

5450
{{< alert title="Note" color="note" >}}
5551
If you are using the Viam app to add networks to a machine’s configuration, the machine will need to be connected to the internet to retrieve the configuration information containing the network credentials before it can use them.
@@ -61,26 +57,20 @@ If the `fallbackNetOne` is not available or the machine can connect but internet
6157

6258
```json
6359
"agent": {
64-
"agent-provisioning": {
65-
...
66-
"attributes": {
67-
"roaming_mode": true,
68-
"networks": [
69-
{
70-
"type": "wifi",
71-
"ssid": "fallbackNetOne",
72-
"psk": "myFirstPassword",
73-
"priority": 30
74-
},
75-
{
76-
"type": "wifi",
77-
"ssid": "fallbackNetTwo",
78-
"psk": "mySecondPassword",
79-
"priority": 10
80-
}
81-
]
60+
"additional_networks": [
61+
{
62+
"type": "wifi",
63+
"ssid": "fallbackNetOne",
64+
"psk": "myFirstPassword",
65+
"priority": 30
66+
},
67+
{
68+
"type": "wifi",
69+
"ssid": "fallbackNetTwo",
70+
"psk": "mySecondPassword",
71+
"priority": 10
8272
}
83-
}
73+
]
8474
}
8575
```
8676

@@ -92,63 +82,36 @@ By default, the maximum disk space `journald` will use for `viam-server` logs is
9282

9383
To adjust these settings update the `"agent"` value in the machine's JSON configuration.
9484

95-
For complete reference information, see [viam-agent](/manage/reference/viam-agent/#agent-syscfg) and the [`journald` docs](https://www.freedesktop.org/software/systemd/man/latest/journald.conf.html#SystemMaxUse=).
85+
For complete reference information, see [viam-agent](/manage/reference/viam-agent/#system_configuration) and the [`journald` docs](https://www.freedesktop.org/software/systemd/man/latest/journald.conf.html#SystemMaxUse=).
9686

9787
### Set the maximum disk space
9888

99-
To set the maximum disk space `journald` will use to persist logs, add the `system_max_use` field to the `agent-syscfg`'s `attributes` object.
100-
You may need to add the `agent-syscfg` object to the `agent` object if it doesn't already exist.
89+
To set the maximum disk space `journald` will use to persist logs, add the `logging_journald_system_max_use_megabytes` field to the `system_configuration` object.
90+
You may need to add the `system_configuration` object to the `agent` object if it doesn't already exist.
10191

10292
The configured values will take precedence over operating system defaults.
10393

10494
```json
10595
"agent": {
106-
"agent-syscfg": {
107-
"release_channel": "stable",
108-
"attributes": {
109-
"logging": {
110-
"system_max_use": "512M"
111-
}
112-
}
96+
"system_configuration": {
97+
"os_auto_upgrade_type": "security",
98+
"logging_journald_system_max_use_megabytes": 512
11399
}
114100
}
115101
```
116102

117103
### Set the runtime space limit space
118104

119-
To set the temporary space limit for logs, add the `runtime_max_use` field to the `agent-syscfg`'s `attributes` object.
120-
You may need to add the `agent-syscfg` object to the `agent` object if it doesn't already exist.
105+
To set the temporary space limit for logs, add the `logging_journald_runtime_max_use_megabytes` field to the `system_configuration` object.
106+
You may need to add the `system_configuration` object to the `agent` object if it doesn't already exist.
121107

122108
The configured values will take precedence over operating system defaults.
123109

124110
```json
125111
"agent": {
126-
"agent-syscfg": {
127-
"release_channel": "stable",
128-
"attributes": {
129-
"logging": {
130-
"runtime_max_use": "512M"
131-
}
132-
}
133-
}
134-
}
135-
```
136-
137-
### Use the default operating system settings
138-
139-
This configuration does not modify the OS-level logging configuration.
140-
141-
The operating system defaults for `journald` will determine the logging settings.
142-
143-
```json
144-
"agent": {
145-
"agent-syscfg": {
146-
"release_channel": "stable",
147-
"attributes": {
148-
"logging": {
149-
"disable": true
150-
}
151-
}
112+
"system_configuration": {
113+
"os_auto_upgrade_type": "security",
114+
"logging_journald_runtime_max_use_megabytes": 512
152115
}
153116
}
154117
```

0 commit comments

Comments
 (0)