You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

2.9 KiB

Aurora OpenCloud

A Container Engine for illumos implementing the broadly used standards in the cloud field and making them work with the Quality and integration the illumos is used to.

Scope

The following standards are in scope of this Project:

Components

To make these standards usable the following Components are part of this Project:

  • CLI
    • cloudadm create and manage clusters on hardware or any supported cloud provider
    • podadm run and manage containers and pods on single nodes or clusters
    • imageadm build and publish images in the OCI format from configuration instructions or Dockerfiles
  • Kubernetes
    • podadmd a kubelet implementation allowing kubernetes workloads to run within zones
  • Higher level concepts

Status

Currently the OCI standards are implemented

Installation

From source

Install Go 1.13 or higher. Make sure you have a working Go environment. See the install instructions. For OpenIndiana you can do the following

WORKSPACE="$HOME/workspace"

pkg install -v golang-113 system/header developer/build/gnu-make git developer/gcc-8 system/library/gcc-8-runtime jq

export GOPATH="$WORKSPACE/go"

Install the task utility to build the code.

TASK_VERSION="v2.8.0"
cd $GOPATH
git clone https://github.com/go-task/task task
pushd task/cmd/task
    git checkout $TASK_VERSION
    go install -v
popd

Finally build and install the code. This will install the binaries under /usr/local and the custom zone brand into the correct directory.

task install

Configuration

Create a configuration file for the CLI utilities

cat <<EOF > /etc/opencloud.yaml
root:
  zfs:
    path: "rpool/podhost"
    mountpoint: "/podhost"
docker:
  hubUrl: "https://registry-1.docker.io"
EOF

Usage

Before you can use the CLi you need to initialize the Host once. That will create all the required ZFS datasets and write default state files.

podadm host-init

Now you can run an existing container via podadm run

podadm run  docker://openindiana/hipster

or import your existing zones as images

imageadm import -z ZONENAME

Development

Want to join the project or have a question? Join us in IRC (irc://freenode.net/#aurora-opencloud).