Compare commits

..

13 Commits

Author SHA1 Message Date
fbf3007d4c v3.3.2 2021-06-04 08:42:20 +03:00
2a3df9cd2a Merge pull request #119 from relaxdiego/master
Auto-install required Vagrant plugins intead of erroring out
2021-06-04 05:40:18 +00:00
d71a90c1ef Auto-install required Vagrant plugins instead of erroring out
Change-type: patch
2021-06-03 09:59:44 +08:00
6739d1257b v3.3.1 2021-05-24 15:40:42 +03:00
381fba943d Merge pull request #116 from balena-io/delete-cli-version-warning
scripts/compose: Delete Balena CLI version warning
2021-05-24 12:39:12 +00:00
66acae8bbf scripts/compose: Delete never called helper function 2021-05-24 14:16:11 +02:00
cd2c3f5e11 scripts/compose: Delete Balena CLI version warning
This can be removed completely now — it was added to ensure existing users also update to the latest (at the time) CLI as they updated their open-balena installation.

Change-type: patch
2021-05-24 14:08:00 +02:00
071b5850a9 v3.3.0 2021-05-05 16:22:49 +03:00
91bc92dbb5 Merge pull request #115 from bartversluijs/patch-registry
Update registry service to v2.16.0
2021-05-05 13:21:13 +00:00
49831a6a60 Update registry service
Change-type: minor
2021-05-05 15:13:27 +02:00
549de52c73 v3.2.2 2021-04-29 14:36:50 +03:00
826b61f08b Merge pull request #112 from balena-io/rmorillo24-patch-OBsupporteddevices
patch: Adding supported devices to OB
2021-04-29 11:35:14 +00:00
0cdf0ef558 patch: Adding supported devices to OB
Added a line in the OB vs balenaCloud which includes a mention to the devices supported by each. This list is mentioned in the FAQ section of the pricing page.
2021-04-28 17:14:52 +02:00
8 changed files with 79 additions and 16 deletions

View File

@ -1,3 +1,52 @@
- commits:
- subject: Auto-install required Vagrant plugins instead of erroring out
hash: d71a90c1efcf75e6e33e0f63c9b49803ddafd3fd
body: ''
footer:
Change-type: patch
change-type: patch
author: Mark S. Maglana
nested: []
version: 3.3.2
date: 2021-06-03T02:02:26.762Z
- commits:
- subject: >-
scripts/compose: Delete Balena CLI version warning This can be removed
completely now — it was added to ensure existing users also update to
the latest (at the time) CLI as they updated their open-balena
installation.
hash: cd2c3f5e11c492f91ff49da5b164c280c183a41f
body: ''
footer:
Change-type: patch
change-type: patch
author: fisehara
nested: []
version: 3.3.1
date: 2021-05-24T12:19:20.216Z
- commits:
- subject: Update registry service
hash: 49831a6a60f7ce2021c6a06f89d63dc6ba5d21dd
body: ''
footer:
Change-type: minor
change-type: minor
author: Bart Versluijs
nested: []
version: 3.3.0
date: 2021-05-05T13:17:28.209Z
- commits:
- subject: 'patch: Adding supported devices to OB'
hash: 0cdf0ef5589c4361370cbccd435b1a655c1ccc98
body: >-
Added a line in the OB vs balenaCloud which includes a mention to the
devices supported by each. This list is mentioned in the FAQ section of
the pricing page.
footer: {}
author: rmorillo24
nested: []
version: 3.2.2
date: 2021-04-28T15:20:11.538Z
- commits:
- subject: Add Matt and Paulo to CODEOWNERS
hash: 746be65846890130ebda95b03c056afa6a5816bb

View File

@ -4,6 +4,26 @@ All notable changes to this project will be documented in this file
automatically by Versionist. DO NOT EDIT THIS FILE MANUALLY!
This project adheres to [Semantic Versioning](http://semver.org/).
# v3.3.2
## (2021-06-03)
* Auto-install required Vagrant plugins instead of erroring out [Mark S. Maglana]
# v3.3.1
## (2021-05-24)
* scripts/compose: Delete Balena CLI version warning This can be removed completely now — it was added to ensure existing users also update to the latest (at the time) CLI as they updated their open-balena installation. [fisehara]
# v3.3.0
## (2021-05-05)
* Update registry service [Bart Versluijs]
# v3.2.2
## (2021-04-28)
* patch: Adding supported devices to OB [rmorillo24]
# v3.2.1
## (2021-02-06)

View File

@ -115,6 +115,7 @@ improvements and new functionality is planned:
| Management via `balena-cli` only | Cloud-based device management dashboard |
| Download images from [balena.io][balena-os-website] | Download preconfigured images directly from the dashboard |
| No supported remote diagnostics | Remote device diagnostics |
| Supported devices: Raspberry Pi family, the Intel NUC, the NVIDIA Jetson TX2, and the balenaFin | All the devices listed in balena's [reference documentation](https://www.balena.io/docs/reference/hardware/devices/) |
Additionally, refer back to the [roadmap](#roadmap) above for planned but not yet implemented features.

View File

@ -1 +1 @@
3.2.1
3.3.2

13
Vagrantfile vendored
View File

@ -1,12 +1,11 @@
Vagrant.require_version '>= 2.0.0'
[ 'vagrant-vbguest', 'vagrant-docker-compose' ].each do |p|
unless Vagrant.has_plugin?(p)
raise "Please install missing plugin: vagrant plugin install #{p}"
end
end
Vagrant.require_version '>= 2.2.0'
Vagrant.configure('2') do |config|
config.vagrant.plugins = [
'vagrant-vbguest',
'vagrant-docker-compose'
]
config.vm.define 'openbalena'
config.vm.hostname = 'openbalena-vagrant'
config.vm.box = 'bento/ubuntu-18.04'

View File

@ -85,6 +85,7 @@ services:
REGISTRY2_S3_SECRET: ${OPENBALENA_S3_SECRET_KEY}
REGISTRY2_SECRETKEY: ${OPENBALENA_REGISTRY_SECRET_KEY}
REGISTRY2_STORAGEPATH: /data
REGISTRY2_DISABLE_REDIRECT: "false"
vpn:
extends:

View File

@ -1,6 +1,6 @@
export OPENBALENA_API_VERSION_TAG=v0.119.5
export OPENBALENA_DB_VERSION_TAG=v4.1.0
export OPENBALENA_MDNS_PUBLISHER_VERSION_TAG=v1.9.2
export OPENBALENA_REGISTRY_VERSION_TAG=v2.14.4
export OPENBALENA_REGISTRY_VERSION_TAG=v2.16.0
export OPENBALENA_S3_VERSION_TAG=v2.9.9
export OPENBALENA_VPN_VERSION_TAG=v9.17.4

View File

@ -11,10 +11,6 @@ echo_bold() {
printf "\\033[1m%s\\033[0m\\n" "$@"
}
echo_bold_stderr() {
printf "\\033[1m%s\\033[0m\\n" "$@" 1>&2
}
VERSIONS_FILE="${BASE_DIR}/compose/versions"
if [ ! -f "$VERSIONS_FILE" ]; then
echo_bold "No service versions defined in ${VERSIONS_FILE}"
@ -35,9 +31,6 @@ if [ ${OPENBALENA_HOST_NAME: -6} == ".local" ]; then
INCLUDE_MDNS="-f ${BASE_DIR}/compose/mdns.yml"
fi
# show a warning to update your balena CLI tool...
echo_bold_stderr "IMPORTANT: Please update your Balena CLI installation to version v12.38.5"
# shellcheck source=/dev/null
source "${VERSIONS_FILE}"; docker-compose \
--project-name 'openbalena' \