Image-Builder - 镜像生成器


Apache 2.0
跨平台
Python

软件简介

Image-Builder 是一个模块化镜像生成器。

目标:

  • 可以很容易地创建 EC2 风格的镜像 (root, kernel, ramdisk like)

  • 允许采用不同来源的那些镜像 (现在只是一个压缩文件的安装 / 分区)

  • 您可以轻松的扩展一组模块化的 python 代码,也可以很容易地添加自定义逻辑上顶部的这些镜像

  • 保持它小、 灵活、 理智、 清洁

代码示例:

$ cat build.yaml

---
# Which modules should be ran (in order)
modules:
  - install-rpms
  - add_user

# Enable this if you wish to install
# any users info into the image (ie for testing).
add_users: 
   - harlowja

...