软件简介

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

...


转载自: https://www.oschina.net/p/image-builder