Skip to end of banner
Go to start of banner

Create build images

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 10 Current »

Introduction

Bigtop uses docker based images as build environment for its components.

It provideds support for following OS-platforms:

CentOS-6/7(x86),  Debian-8/9(x86), Fedora-25(x86, ppc64le), OpenSUSE-42.1(x86), Ubuntu-14.04/16.04(x86,ppc64le,aarch64)

The hierarchy of these images is:

Pre-requesties

  • Docker

    apt-get install -y docker.io

Bigtop/puppet-{OS} images

To build bigtop/puppet images, say, ubuntu-16.04-aarch64:

cd docker/bigtop-puppet/ubuntu-16.04-aarch64
./build.sh

This will create bigtop/puppet:ubuntu-16.04-aarch64 image.

$ docker images
REPOSITORY            TAG                          IMAGE ID            CREATED             SIZE
bigtop/puppet         ubuntu-16.04-aarch64         d540810efa71        4 days ago          305.9 MB
aarch64/ubuntu        16.04                        a7d1ddc47ced        10 weeks ago        109.7 MB

Bigtop/slaves-{OS} images

cd <BIGTOP_SRC_TOP>
docker build -t bigtop/slaves:trunk-ubuntu-16.04-aarch64 -f docker/bigtop-slaves/ubuntu-16.04-aarch64/Dockerfile .

This will create bigtop/slaves:trunk-ubuntu-16.04-aarch64 image.

$ docker images
REPOSITORY            TAG                          IMAGE ID            CREATED             SIZE
bigtop/slaves         trunk-ubuntu-16.04-aarch64   5b4c77dc374f        2 hours ago         2.861 GB
bigtop/puppet         ubuntu-16.04-aarch64         d540810efa71        4 days ago          305.9 MB
aarch64/ubuntu        16.04                        a7d1ddc47ced        10 weeks ago        109.7 MB
  • No labels