• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

smith: Smith 是 Oracle 发布的一个微容器构建工具,使用 Golang 开发 ...

原作者: [db:作者] 来自: 网络 收藏 邀请

开源软件名称:

smith

开源软件地址:

https://gitee.com/mirrors/smith

开源软件介绍:

smith - microcontainer builder

smith

What is smith?

smith is a simple command line utility for buildingmicrocontainersfrom rpm packages or oci images.

Principles of microcontainers

  1. A microcontainer only contains the process to be run and its directdependencies.

  2. The microcontainer has files with no user ownership or special permissionsbeyond the executable bit.

  3. The root filesystem of the container should be able to run read-only. Allwrites from the container should be into a directory called /write. Anyunique config that an individual container instance will need should beplaced into a directory called /read. Ephemeral files such as pid filescan be written to /run.

Building and Running smith

You can build and run smith either as:

  • A Docker image
  • A Binary

Both methods are described below, but the Docker route is recommended as the simplest and easiest option.

Docker based smith

Dependencies

  • Docker

Method

  1. Clone smith:

git clone https://github.com/oracle/smith.git

  1. Build smith Docker image using the Dockerfile provided, optionally adding your own docker-repo-id to the tag:

sudo docker build -t [<docker-repo-id>/]smith .

  1. Set up an alias (or script) to run smith from the command line:
smith(){    sudo docker run -it --rm \    --privileged -v $PWD:/write \    -v cache:/var/cache \    -v /tmp:/tmp \    -v mock:/var/lib/mock [<docker-repo-id>/]smith $@}

You should now be able to start building microcontainers (see below).

Binary smith

wercker status

Building can be done via the Makefile:

make

Dependencies

Build
  • Docker
  • Go

To install go run sudo yum install golang-bin or sudo apt install golang-go as appropriate

Go dependencies are vendored in the vendor directory.

Runtime

To build from RPMs, smith requires:

  • mock

mock can have issues with non - RPM distros.

If you have problems installing or running smith natively on a non - RPM distro, best advice is to build it and run it in a Docker container (see above)

mock can be installed on Debian/Ubuntu with some extra care (see below). Specifically you need at least mock1.2. Version 1.1.X will not work because the -r flag does not support abspath to the mock config file.Be aware that your smith builds may still fail.

Debian/Ubuntu specific instructions (Here be Dragons):

sudo apt install mock createrepo yum

# Fedora rawhide chroot (which mock uses by default) does not play well with# Debian, so point /etc/mock/default.cfg to EPEL 7 (6 on Ubuntu):sudo ln -s /etc/mock/epel-7-x86_64.cfg /etc/mock/default.cfg 
# rpm on Debian has a patch to macros that messes up mock so undo it. Note# that updating your os will sometimes reset this file and you will have# to run this command again.sudo sed -i 's;%_dbpath\t.*;%_dbpath\t\t%{_var}/lib/rpm;g' /usr/lib/rpm/macros
# on debian/ubuntu for some reason yum tries to install packages for# multiple archs, so it is necessary to update the yum.conf section in# default.cfg to prevent that. If you switch your default.cfg you may# have to do this again.sudo sed -i '/\[main\]/a multilib_policy=best' /etc/mock/default.cfg

Whichever distro you are using check that your user is a member of the group mock:

$ groups

If your user is not a member of the group mock then add them:

$ usermod -aG mock <your_username>

On Oracle Linux edit your /etc/mock/site-defaults.cfg and add:

config_opts['use_nspawn'] = False

Installing smith

Installing can be done via the Makefile:

sudo make install

Using smith

To use smith, simply create a smith.yaml defining your container and runsmith. If you want to overlay additional files or symlinks, simply place theminto a directory called rootfs beside smith.yaml.

If you are building the same container multiple times without editing thepackage line, the -f parameter will rebuild the container withoutreinstalling the package.

Building Microcontainers

To build a "hello world" container with smith:

  1. Create a new directory and cd to it
mkdir catcd cat
  1. Create a smith.yaml file with the following contents:
package: coreutilspaths:- /usr/bin/catcmd:- /usr/bin/cat- /read/data
  1. Create the rootfs directory. Smith will put the contents of the ./rootfs directory into the root directory of the image.

mkdir rootfs

  1. Create the read directory under rootfs

mkdir rootfs/read

  1. Create the file data under rootfs/read with the following content:

Hello World!

  • invoke smith with no parameters:

smith

Your image will be saved as image.tar.gz. You can change the name with aparameter:

smith -i cat.tar.gz

Smith has a few other options which can be viewed using "--help"

smith --help

Build Types

Smith can build from local rpm files or repositories. You can change the yumconfig by modifying your /etc/mock/default.cfg.

Smith can also build directly from oci files downloaded via the downloadcommand, or an oci directly from a docker repository. Simply specify either inyour smith.yaml as package, for example:

package: https://registry-1.docker.io/library/fedorapaths:- /usr/bin/catcmd:- /usr/bin/cat- /read/data

To build Smith directly from oci, the Docker command is slightly different:

smith(){    docker run -it --rm \    -v $PWD:/write \    -v tmp:/tmp vishvananda/smith $@}

Advanced Usage

For more detailed instructions on building containers, check out:

Upload

You can upload your image to a docker repository:

smith upload -r https://username:[email protected]/myrepo/cat -i cat.tar.gz

Images will be uploaded to the tag latest. You can specify an alternative tagname to use appending it after a colon:

smith upload -r https://registry-1.docker.io/myrepo/cat:newtag

It automatically uploads to registry-1.docker.io using docker media types.Otherwise it tries to upload using oci media types. If you want to upload to aprivate docker v2 registry that doesn't support oci media types, you can usethe -d switch:

smith upload -d -r https://myregistry.com/myrepo/cat -i cat.tar.gz

You can specify a tag name to upload to by appending it to the name

Download

smith can also download existing images from docker repositories:

smith download -r https://registry-1.docker.io/library/hello-world -i hello-world.tar.gz

It will convert these to tar.gz oci layouts. The latest tag will bedownloaded. To download an alternative tag, append it after a colon:

smith download -r https://registry-1.docker.io/library/hello-world:othertag

Contributing

Smith is an open source project. See CONTRIBUTING fordetails.

Oracle gratefully acknowledges the contributions to smith that have been madeby the community.

Getting in touch

The best way to get in touch is Slack.

Click here to join the the Oracle Container Tools workspace.

Then join the Smith channel.

License

Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.

Smith is dual licensed under the Universal Permissive License 1.0 and theApache License 2.0.

See LICENSE for more details.


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
lnmp: 开发用的lnmp一键安装包,集成pure-ftpd发布时间:2022-03-25
下一篇:
ngx_http_cppjieba_module: CppJieba 的 Nginx 扩展模块发布时间:2022-03-25
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap