-
Notifications
You must be signed in to change notification settings - Fork 4
/
current-albatross-deployer.opam
57 lines (54 loc) · 1.63 KB
/
current-albatross-deployer.opam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
opam-version: "2.0"
maintainer: "Lucas Pluvinage"
authors: "Lucas Pluvinage"
license: "ISC"
homepage: "https://github.com/tarides/current-albatross-deployer"
bug-reports: "https://github.com/tarides/current-albatross-deployer/issues"
dev-repo: "git+https://github.com/tarides/current-albatross-deployer.git"
doc: "https://tarides.github.io/current-albatross-deployer/"
depends: [
"albatross" {>= "1.5.5"}
"obuilder-spec" {>= "0.5"}
"ocaml" {>= "4.08.0"}
"dune" {>= "2.9.0"}
"odoc" {with-doc}
"asn1-combinators" {>= "0.2.6"}
"bos" {>= "0.2.0"}
"cmdliner" {>= "1.1.0"}
"cstruct" {>= "6.0.1"}
"current" {>= "0.5"}
"current_docker" {>= "0.5"}
"current_web" {with-test}
"ipaddr" {>= "5.2.0"}
"logs" {>= "0.7.0"}
"lwt" {>= "5.4.2"}
"ppx_deriving" {>= "5.2.1"}
"ppx_deriving_yojson" {>= "3.6.1"}
"rresult" {>= "0.6.0"}
"alcotest" {>= "1.4.0" & with-test}
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
synopsis: """
An ocurrent plugin to deploy MirageOS unikernels
"""
description: """
This is an [ocurrent](https://github.com/ocurrent/ocurrent) plugin to manage deployment of
unikernels. It's specialized for linux, using [Albatross](https://github.com/roburio/albatross)
for orchestrating the virtual machines and `iptables` for exposing ports.
It's been made with _zero downtime_ in mind, meaning that when an unikernel is updated, a new
instance is started while keeping the old one alive, and the switch to the new instance is managed
using a port redirection to the new IP.
"""