Commit Graph

4156 Commits

Author SHA1 Message Date
20k-ultra
b5a2b8b751 update packages for vulnerabilities
Change-type: patch
Signed-off-by: 20k-ultra <3946250+20k-ultra@users.noreply.github.com>
2022-03-16 00:10:22 -04:00
Balena CI
702efb2d14 v12.11.39 2022-03-16 05:19:57 +02:00
bulldozer-balena[bot]
a5d13902ec
Merge pull request #1888 from balena-os/lift-report-throttle
Move report throttle out of reporting logic
2022-03-16 03:17:11 +00:00
20k-ultra
2fdb83839c Move report throttle out of reporting logic
Change-type: patch
Signed-off-by: 20k-ultra <3946250+20k-ultra@users.noreply.github.com>
2022-03-15 22:53:34 -04:00
20k-ultra
5e5f1fb305 Update npm dep sinon to v11.1.2
Change-type: patch
Signed-off-by: 20k-ultra <3946250+20k-ultra@users.noreply.github.com>
2022-03-15 22:53:34 -04:00
20k-ultra
edcbb622d8 Added PR template doc
Change-type: patch
Signed-off-by: 20k-ultra <3946250+20k-ultra@users.noreply.github.com>
2022-03-15 17:43:45 +00:00
Balena CI
710d214dbb v12.11.38 2022-03-15 01:08:28 +02:00
bulldozer-balena[bot]
2977d22b92
Merge pull request #1897 from balena-os/patch-trigger-apply
Apply target state if loaded from file (apps.json)
2022-03-14 23:06:52 +00:00
20k-ultra
b069d6b9d5 Apply target state if loaded from file (apps.json)
Closes: #1895
Change-type: patch
See: https://www.flowdock.com/app/rulemotion/r-supervisor/threads/tSN9BgLxkgJKapbQHQJr-R9yLPM
Signed-off-by: 20k-ultra <3946250+20k-ultra@users.noreply.github.com>
2022-03-14 18:49:29 -04:00
Balena CI
ba395b2dbd v12.11.37 2022-02-28 23:24:15 +02:00
bulldozer-balena[bot]
bc571699ce
Merge pull request #1892 from balena-os/404-supervisor0
Fix check for supervisor0 network
2022-02-28 21:21:34 +00:00
Felipe Lalanne
d1956b69cc Fix check for supervisor0 network
The check for the docker network supervisor0 assumed that if the
interface supervisor0 existed, then the network would exist too. However this is not
true on the case of docker directory corruption, which would lead to a
loop with `Error: (HTTP code 404) no such network - network supervisor0 not found`.

Change-type: patch
Closes: #1806
2022-02-25 19:46:59 -03:00
Balena CI
2615c25fc4 v12.11.36 2022-02-24 15:32:47 +02:00
bulldozer-balena[bot]
cb68a067b3
Merge pull request #1891 from balena-os/sec-opt
Ignore selinux security opts when comparing services
2022-02-24 13:31:01 +00:00
Felipe Lalanne
1b54ce8bfd Ignore selinux security opts when comparing services
The moby engine v20.x.y adds some selinux [security configurations](https://docs.docker.com/engine/reference/run/#security-configuration)
depending on the [container configuration](https://github.com/moby/moby/blob/master/daemon/create.go#L214).
This would cause the supervisor to enter a service restart loop as the
current and target service configurations will never match. The
supervisor now ignores selinux specific security options since those are
not supported by balenaOS.

Closes: #1890
Change-type: patch
2022-02-23 18:12:27 -03:00
Balena CI
2df5b2f388 v12.11.35 2022-02-16 23:01:18 +02:00
bulldozer-balena[bot]
aee9117871
Merge pull request #1863 from balena-os/troubleshoot-dbus-macos
Add troubleshooting notice for macOS
2022-02-16 20:58:55 +00:00
Balena CI
b677972576 v12.11.34 2022-02-16 15:31:02 +02:00
bulldozer-balena[bot]
1c82097d1d
Merge pull request #1883 from balena-os/reduce-config-json-writes
Make the supervisor more resistant to restarts during config changes
2022-02-16 13:28:30 +00:00
Felipe Lalanne
e7ec42fadc Use a breadcrumb to mark that a reboot is required
As changes to config.json may restart the supervisor before it can
trigger the reboot (or something can kill the supervisor before it can run that step),
the supervisor needs a persistent signal that a reboot is required
(instead of the current transient signal).

With this commit, the supervisor will now create a breadcrumb in the
host `/tmp` folder, that will be checked as the last step of the
configuration changes.
2022-02-15 12:52:48 -03:00
Felipe Lalanne
a2d6db1e1d Update signature of fsUtils.getPathOnHost
The function now returns either a string array if it receives multiple
arguments or a single string if it receives a single argument.
2022-02-15 12:52:46 -03:00
Felipe Lalanne
2917f03452 Perform config.json sequentially to other config changes
As config.json changes may restart the engine (and hence the supervisor)
in newer OS versions, this ensures that the supervisor does not get
interrupted while writing to backends.
2022-02-15 12:49:03 -03:00
Felipe Lalanne
63cb985c53 Split device-config step calculation into separate functions 2022-02-15 12:49:03 -03:00
Felipe Lalanne
118875e12e Fix apiUpdatePollInterval default to line up with API 2022-02-15 12:49:03 -03:00
Felipe Lalanne
a4d91d381a Create touch and getBootTime utility functions
Change-type: patch
2022-02-15 12:49:03 -03:00
bulldozer-balena[bot]
4e2b959481
Merge pull request #1881 from balena-os/1876-add-api-lock-checks
Add update lock checks to PATCH /v1/device/host-config endpoint
2022-02-15 15:40:04 +00:00
Christina Wang
5f1a77da25 Add update lock check to PATCH /v1/device/host-config
This is necessary with the changes as of balenaOS 2.82.6, which watches config.json
and will restart balena-hostname and some other services automatically on file change.

Change-type: patch
Relates-to: #1876
Signed-off-by: Christina Wang <christina@balena.io>
2022-02-14 22:22:00 +00:00
Christina Wang
4f446103f4 Remove lockingIfNecessary in favor of updateLock.lock
The functionality is pretty much the same, so we don't need the two
functions in two different places.

Signed-off-by: Christina Wang <christina@balena.io>
2022-02-14 22:06:18 +00:00
Balena CI
ff35af11b1 v12.11.33 2022-02-09 21:14:13 +02:00
bulldozer-balena[bot]
c1802ae80b
Merge pull request #1880 from balena-os/local-ipv6
Add support for local ipv6 reporting
2022-02-09 19:10:04 +00:00
Felipe Lalanne
72f6cbe4c7 Add support for local ipv6 reporting
With more and more devices in ipv6 only networks, this ensures the
local addresses are reported to the cloud as part of the state patch.

Change-type: patch
2022-02-08 19:06:13 -03:00
Balena CI
5e0cf27bba v12.11.32 2022-02-02 17:55:02 +02:00
bulldozer-balena[bot]
eaaa4eeec6
Merge pull request #1878 from balena-os/write-sync-config-json
Write sync config json
2022-02-02 15:53:26 +00:00
Felipe Lalanne
d071cd1507 Use writeAndSync when writing to config.json
`/mnt/boot` is a vfat partition which does not support atomic file
rename. The best course of action is to write and sync as fast as
possible to prevent corruption (although it still may happen)

Change-type: patch
2022-02-01 18:56:18 -03:00
Felipe Lalanne
a0ed00d8f3 Perform safeRename on writeFileAtomic
This forces a sync of the file as soon as the rename happens to prevent
corruption.
2022-02-01 18:56:18 -03:00
Balena CI
c5670ba366 v12.11.31 2022-02-01 23:49:09 +02:00
bulldozer-balena[bot]
b6bc81cadf
Merge pull request #1868 from balena-os/finish-event
Ensure the `finish` event is always reported when fetching images
2022-02-01 21:47:22 +00:00
Felipe Lalanne
fa0e28de6d Clean up image event reporting 2022-02-01 18:35:50 -03:00
Balena CI
6796383437 v12.11.30 2022-01-27 20:54:34 +02:00
bulldozer-balena[bot]
53d7d9c6c8
Merge pull request #1874 from balena-os/fake-304
Throw if target states gets a 304 without an ETAG
2022-01-27 18:52:06 +00:00
Felipe Lalanne
f471ad736c Throw if target states gets a 304 without an ETAG
The API uses 304 as a mechanism for load management on target state
requests. This may cause that the supervisor receives a 304 response
without having received a copy of the target state first, leading to
issues. This change checks for an etag when receiving a 304, throwing an
exception otherwise.

Change-type: patch
2022-01-26 11:27:15 -03:00
Balena CI
fba0317620 v12.11.29 2022-01-20 15:03:26 +02:00
bulldozer-balena[bot]
db6f226b7a
Merge pull request #1766 from balena-os/vipulgupta2048-patch-1-1
patch: Update fleet terminology for application update locks
2022-01-20 13:01:15 +00:00
Vipul Gupta (@vipulgupta2048)
277ab39dab Replace application --> fleet
Signed-off-by: Vipul Gupta (@vipulgupta2048) <vipul@balena.io>
2022-01-20 18:17:30 +05:30
Vipul Gupta
6357d3541e patch: Update fleet terminology for application update locks 2022-01-20 18:17:30 +05:30
Vipul Gupta (@vipulgupta2048)
a631e86997 patch: Update fleet terminology for the Supervisor API
Signed-off-by: Vipul Gupta (@vipulgupta2048) <vipul@balena.io>
2022-01-20 18:15:25 +05:30
Balena CI
ca7e42b2c7 v12.11.28 2022-01-19 17:31:27 +02:00
bulldozer-balena[bot]
ec263d3028
Merge pull request #1864 from balena-os/dmidecode
Use dmidecode to read cpuid in non ARM devices
2022-01-19 15:28:57 +00:00
Balena CI
fcaef150a8 v12.11.27 2022-01-18 15:03:33 +02:00
bulldozer-balena[bot]
8a773d0759
Merge pull request #1869 from balena-os/update-locking-env-var-changes
docs: Clarify that update locks prevent restarts from env var changes
2022-01-18 13:01:04 +00:00