Awesome
oci2aci - Convert OCI bundle to ACI
oci2aci is a small library and CLI binary that converts OCI bundle to ACI. It takes OCI bundle as input, and gets ACI image as output.
oci2aci's workflow divided into two steps:
- Convert. Convert oci layout to aci layout.
- Build. Build aci layout to .aci image.
An OCI layout described as below:
config.json
runtime.json
rootfs/
An ACI layout described as below:
manifest
rootfs/
Build
Installation is simple as:
go get github.com/huawei-openlab/oci2aci
or as involved as:
# create a 'github.com/huawei-openlab' in your GOPATH/src
cd $GOPATH/src/github.com/
mkdir huawei-openlab
cd huawei-openlab
git clone https://github.com/huawei-openlab/oci2aci.git
cd oci2aci
make
sudo make install
Usage
$ oci2aci
NAME:
oci2aci - Tool for conversion from oci to aci
USAGE:
oci2aci [--debug] [arguments...]
VERSION:
0.1.0
FLAGS:
-debug=false: Enables debug messages
-name="oci": Specify the name field of aci manifest
You can use oci2aci as a CLI tool directly to convert a oci-bundle to aci image, furthermore, you can use oci2aci as a external function in your program by importing package "github.com/huawei-openlab/oci2aci/convert"
Example
Use oci2aci as a go package
package main
import (
"github.com/huawei-openlab/oci2aci/convert"
)
func main() {
......
// Get aci manifest from oci bundle.
aciManifestPath, err := convert.Oci2aciManifest(ociPath)
// Get aci image from oci bundle.
aciImg, err := convert.Oci2aciImage(ociPath)
......
return
}
Use oci2aci as a CLI tool
Examples of oci2aci CLI tool illustrated as below:
- An example of invalid oci bundle
$ oci2aci --debug test
2015/09/28 09:46:05 test: invalid oci bundle: error accessing bundle: stat test: no such file or directory
2015/09/28 09:46:05 Conversion stop.
- An example of valid oci bundle
$ oci2aci --debug example/oci-bundle
2015/09/28 09:42:14 example/oci-bundle/: valid oci bundle
2015/09/28 09:42:14 Manifest:/tmp/oci2aci796486541/manifest generated successfully.
2015/09/28 09:42:14 Image:/tmp/oci2aci796486541.aci generated successfully.
$ actool --debug validate /tmp/oci2aci796486541.aci
/tmp/oci2aci796486541.aci: valid app container image
$ rkt run /tmp/oci2aci796486541.aci --interactive --insecure-skip-verify --mds-register=false --volume proc,kind=host,source=/bin --volume dev,kind=host,source=/bin --volume devpts,kind=host,source=/bin --volume shm,kind=host,source=/bin --volume mqueue,kind=host,source=/bin --volume sysfs,kind=host,source=/bin --volume cgroup,kind=host,source=/bin
2015/09/28 09:45:26 Preparing stage1
2015/09/28 09:45:26 Writing image manifest
2015/09/28 09:45:26 Loading image sha512-ed1404273ed6ab8e8c7a323b994e8ce6e24d0dd5b17d2480021d52cdc87de8f1
2015/09/28 09:45:26 Writing pod manifest
2015/09/28 09:45:26 Setting up stage1
2015/09/28 09:45:26 Wrote filesystem to /var/lib/rkt/pods/run/fc9d66c6-4c49-4a14-94d6-3d8215521dd2
2015/09/28 09:45:26 Pivoting to filesystem /var/lib/rkt/pods/run/fc9d66c6-4c49-4a14-94d6-3d8215521dd2
2015/09/28 09:45:26 Execing /init
[1016397.575456] example[4]: Do something in advance for the rkt container......Done!
[1016397.579740] example[6]: Hello, I am running in the rkt container......
[1016397.581921] example[8]: Clean the resource for the rkt container......Done!
- Specify output directory for generated aci image
$ ./oci2aci --debug example/oci-bundle/ oci.aci
2015/11/14 15:56:43 example/oci-bundle/: valid oci bundle
2015/11/14 15:56:43 Manifest:/tmp/oci2aci406724597/manifest generated successfully.
2015/11/14 15:56:43 Image:/tmp/oci2aci406724597.aci generated successfully.
2015/11/14 15:56:43 Image:oci.aci generated successfully
- An example for oci bundle of
busybox
First, follow the instruction here to get an oci bundle of busybox
.
$ ./oci2aci --debug example/busybox/ busybox.aci
DEBU[0000] example/busybox/: valid oci bundle.
DEBU[0000] Manifest file converted successfully.
DEBU[0002] ACI image converted successfully.
DEBU[0002] Image:busybox.aci generated successfully
$ rkt run --insecure-skip-verify --interactive busybox.aci --volume proc,kind=host,source=/bin --volume dev,kind=host,source=/bin --volume devpts,kind=host,source=/bin --volume shm,kind=host,source=/bin --volume mqueue,kind=host,source=/bin --volume sysfs,kind=host,source=/bin --volume cgroup,kind=host,source=/bin
rkt: using image from local store for image name coreos.com/rkt/stage1-coreos:0.11.0
rkt: using image from file /root/Applications/Go/src/github.com/huawei-openlab/oci2aci/1.aci
run: group "rkt" not found, will use default gid when rendering images
/ # ls
bin dev etc home proc root sys tmp usr var
/ #
Use Cases
- OCT: Tools for testing oci specs.