CoreOS 容器引擎,Rocket 0.12.0 发布

jopen 8年前

Rocket (也叫 rkt)是 CoreOS 推出的一款容器引擎,和 Docker 类似,帮助开发者打包应用和依赖包到可移植容器中,简化搭环境等部署工作。Rocket 和 Docker 不同的地方在于,Rocket 没有 Docker 那些为企业用户提供的“友好功能”,比如云服务加速工具、集群系统等。反过来说,Rocket 想做的,是一个更纯粹的业界标准。

CoreOS 把它的容器称为 App Containers,里面包含 app container image、runtime、container-discovery 协议等。其中,App Container Image 和 Docker 里的 Image 比较类似,包含应用必需的元素组成,如源代码和二进制文件。Rocket runtime 则是依照 App Container 标准规格打造的,旨在将容器真正的变成一款命令行工具。

Rocket 0.12.0 发布,此版本是个增量发布版本,包括用户体验改进:细粒度安全控制和空卷隐式生成;性能提升;bug 修复;测试改进等等。

新特性和 UX 改进

  • implement rkt cat-manifest for pods (#1744)

  • generate an empty volume if a required one is not provided (#1753)

  • make disabling security features granular; --insecure-skip-verify is now --insecure-options={feature(s)-to-disable} (#1738). See rkt's Global Options documentation.

  • allow skipping the on-disk integrity check using --insecure-options=ondisk. This greatly speeds up start time. (#1804)

  • set empty volumes' permissions following the spec (1803)

  • flannel networking support in kvm flavor (#1563)

Bug 修复

  • store used MCS contexts on the filesystem (#1742)

  • fix Docker images with whiteout-ed hard links (#1653)

  • fix Docker images relying on /dev/stdout (#1617)

  • use authentication for discovery and trust (#1801)

  • fix build in Docker (#1798)

  • fix kvm networking (#1530)

测试改进

  • add functional tests for rkt api service (#1761)

  • fix TestSocketActivation on systemd-v219 (#1768)

  • fix the ACE validator test (#1802)

其他改进

  • Bumped appc spec to 0.7.3 (#1800)

下载:rkt-v0.12.0.tar.gz

更多内容请看发行说明