Skip to content

Commit e2c27bd

Browse files
committed
[new release] albatross (2.6.0)
CHANGES: * Add "--name=UNIKERNEL NAME" to every unikernel - and if it fails to start with error code 64, restart without the additional parameter. This is in sync with mirage 4.10 which adds a "--name" argument to every unikernel (robur-coop/albatross#229 @hannesm) * Add a "startup" to unikernel configuration to control startup order (fixes robur-coop/albatross#53, robur-coop/albatross#225 @hannesm) * BUGFIX: vmmd: decompress the unikernel image in restart before checking resources (fixes robur-coop/albatross#209, robur-coop/albatross#228 @hannesm) * BREAKING albatrossd, albatross-influx: add a "--no-drop-path" flag to use the full name (including path) for reporting (both for --name and for influx reporting). Previously, a "--drop-label" flag was available. The default is to drop the path. (robur-coop/albatross#229 @hannesm) * client: add support for '-' for remote destination to output the certificate (robur-coop/albatross#227 @hannesm) * BREAKING remove support for old commands (robur-coop/albatross#226 @hannesm) - wire version 3 and wire version 4 (version 5 introduced in 1.5.0, May 2022) - old_console_subscribe and utc_console_data (2.1.0, Jul 2024) - old_unikernel_info1, old_unikernel_get (1.1.0, Jan 2021) - old_unikernel_info2 (2.1.0, Dec 2023) - old unikernel_create and force_create (1.0.0, Mar 2020) - old unikernel_create and force_create (1.1.0, Jan 2021)
1 parent 5fdfa69 commit e2c27bd

File tree

1 file changed

+70
-0
lines changed
  • packages/albatross/albatross.2.6.0

1 file changed

+70
-0
lines changed
Lines changed: 70 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
opam-version: "2.0"
2+
maintainer: "Hannes Mehnert <hannes@mehnert.org>"
3+
authors: ["Hannes Mehnert <hannes@mehnert.org>"]
4+
homepage: "https://github.com/robur-coop/albatross"
5+
dev-repo: "git+https://github.com/robur-coop/albatross.git"
6+
bug-reports: "https://github.com/robur-coop/albatross/issues"
7+
license: "ISC"
8+
9+
depends: [
10+
"ocaml" {>= "4.14.0"}
11+
"dune" {>= "2.7.0"}
12+
"dune-configurator"
13+
"conf-pkg-config" {build}
14+
"conf-libnl3" {os = "linux"}
15+
"conf-libev"
16+
"lwt" {>= "3.0.0"}
17+
"ipaddr" {>= "5.3.0"}
18+
"logs"
19+
"bos" {>= "0.2.0"}
20+
"ptime" {>= "1.1.0"}
21+
"cmdliner" {>= "1.1.0"}
22+
"fmt" {>= "0.8.7"}
23+
"x509" {>= "1.0.0"}
24+
"tls" {>= "1.0.2"}
25+
"tls-lwt" {>= "1.0.2"}
26+
"asn1-combinators" {>= "0.3.0"}
27+
"duration"
28+
"decompress" {>= "1.3.0"}
29+
"bigstringaf" {>= "0.2.0"}
30+
"metrics" {>= "0.5.0"}
31+
"metrics-lwt" {>= "0.2.0"}
32+
"metrics-influx" {>= "0.2.0"}
33+
"metrics-rusage"
34+
"ohex" {>= "0.2.0"}
35+
"http-lwt-client" {>= "0.3.0"}
36+
"happy-eyeballs-lwt"
37+
"solo5-elftool" {>= "0.4.0"}
38+
"cachet" {>= "0.0.2"}
39+
"fpath" {>= "0.7.3"}
40+
"logs-syslog" {>= "0.4.1"}
41+
"digestif" {>= "1.2.0"}
42+
"alcotest" {with-test}
43+
]
44+
build: [
45+
["dune" "subst"] {dev}
46+
["dune" "build" "-p" name "-j" jobs]
47+
["dune" "runtest" "-p" name "-j" jobs] {with-test}
48+
["sh" "-ex" "packaging/FreeBSD/create_package.sh"] {os = "freebsd"}
49+
["sh" "-ex" "packaging/debian/create_package.sh"] {os-family = "debian" | os-family = "ubuntu"}
50+
]
51+
available: os != "openbsd"
52+
synopsis: "Albatross - orchestrate and manage MirageOS unikernels with Solo5"
53+
description: """
54+
The goal of albatross is robust deployment of [MirageOS](https://mirage.io)
55+
unikernels using [Solo5](https://github.com/solo5/solo5). Resources managed
56+
by albatross are network interfaces of kind `tap`, which are connected to
57+
already existing bridges, block devices, memory, and CPU. Each unikernel is
58+
pinned (`cpuset` / `taskset`) to a specific core.
59+
"""
60+
depexts: ["linux-headers"] {os-family = "alpine"}
61+
x-maintenance-intent: [ "(latest)" ]
62+
url {
63+
src:
64+
"https://github.com/robur-coop/albatross/releases/download/v2.6.0/albatross-2.6.0.tbz"
65+
checksum: [
66+
"sha256=95335cd203ba8f4b47a0fa2135ae2adc677c5a09a9e85bf729800eeb78f79de6"
67+
"sha512=5661030612576a2941f57935cf9ceaf04b859e58cd6e70cc1372a9491b85ddaa17e3773c27df5c072fc166533f66ee0663fd52b2e1c4451f1e119dda26ebbac9"
68+
]
69+
}
70+
x-commit-hash: "8fefc74e38cfe11d701a56c8d46d5c2ace3ad800"

0 commit comments

Comments
 (0)