mirror of
https://github.com/balena-os/balena-supervisor.git
synced 2025-02-07 03:40:16 +00:00
v14.0.22
This commit is contained in:
parent
ba9beef1cf
commit
86aece8d29
@ -1,3 +1,26 @@
|
|||||||
|
- commits:
|
||||||
|
- subject: Only install service if running is set to false
|
||||||
|
hash: c6f911c36b8f9afeff5003db44199c95f5bbd8a2
|
||||||
|
body: |
|
||||||
|
The supervisor supports target state `running: false` for services.
|
||||||
|
This state indicates that the service should be stopped if already
|
||||||
|
running, or that the container should just be created and never started
|
||||||
|
if the container does not exist. This commit fixes the latter behavior.
|
||||||
|
|
||||||
|
Although nothing in our platform currently sends this target state, this
|
||||||
|
enables some potential use cases, e.g. only starting some services
|
||||||
|
in manufacturing and starting the rest of the services when the device
|
||||||
|
actually connects.
|
||||||
|
footer:
|
||||||
|
Change-type: patch
|
||||||
|
change-type: patch
|
||||||
|
Closes: "#2014"
|
||||||
|
closes: "#2014"
|
||||||
|
author: Felipe Lalanne
|
||||||
|
nested: []
|
||||||
|
version: 14.0.22
|
||||||
|
title: "'Only install service if running is set to false'"
|
||||||
|
date: 2022-09-14T13:48:20.421Z
|
||||||
- commits:
|
- commits:
|
||||||
- subject: Fix withDefault type helper to work with boolean
|
- subject: Fix withDefault type helper to work with boolean
|
||||||
hash: 3e45e9561e109186ea038c6d3b67f54071ee8a67
|
hash: 3e45e9561e109186ea038c6d3b67f54071ee8a67
|
||||||
|
@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file
|
|||||||
automatically by Versionist. DO NOT EDIT THIS FILE MANUALLY!
|
automatically by Versionist. DO NOT EDIT THIS FILE MANUALLY!
|
||||||
This project adheres to [Semantic Versioning](http://semver.org/).
|
This project adheres to [Semantic Versioning](http://semver.org/).
|
||||||
|
|
||||||
|
# v14.0.22
|
||||||
|
## (2022-09-14)
|
||||||
|
|
||||||
|
* Only install service if running is set to false [Felipe Lalanne]
|
||||||
|
|
||||||
# v14.0.21
|
# v14.0.21
|
||||||
## (2022-09-13)
|
## (2022-09-13)
|
||||||
|
|
||||||
|
@ -2,6 +2,6 @@ name: balena-supervisor
|
|||||||
description: 'Balena Supervisor: balena''s agent on devices.'
|
description: 'Balena Supervisor: balena''s agent on devices.'
|
||||||
joinable: false
|
joinable: false
|
||||||
type: sw.application
|
type: sw.application
|
||||||
version: 14.0.21
|
version: 14.0.22
|
||||||
provides:
|
provides:
|
||||||
- slug: sw.compose.long-volume-syntax
|
- slug: sw.compose.long-volume-syntax
|
||||||
|
2
package-lock.json
generated
2
package-lock.json
generated
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "balena-supervisor",
|
"name": "balena-supervisor",
|
||||||
"version": "14.0.21",
|
"version": "14.0.22",
|
||||||
"lockfileVersion": 1,
|
"lockfileVersion": 1,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "balena-supervisor",
|
"name": "balena-supervisor",
|
||||||
"description": "This is balena's Supervisor, a program that runs on IoT devices and has the task of running user Apps (which are Docker containers), and updating them as the balena API informs it to.",
|
"description": "This is balena's Supervisor, a program that runs on IoT devices and has the task of running user Apps (which are Docker containers), and updating them as the balena API informs it to.",
|
||||||
"version": "14.0.21",
|
"version": "14.0.22",
|
||||||
"license": "Apache-2.0",
|
"license": "Apache-2.0",
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
@ -141,6 +141,6 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"versionist": {
|
"versionist": {
|
||||||
"publishedAt": "2022-09-13T20:13:18.516Z"
|
"publishedAt": "2022-09-14T13:48:20.871Z"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user