Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以使用 heat 模板创建 VM 实例(例如:.ubuntu)并在其上安装一些应用程序?我想创建 ubuntu 实例并使用 heat 模板在其上安装 apache ant
您可以使用 Server 资源的 user_data 部分来指定安装软件的脚本。
buildslave: type: OS::Nova::Server properties: .. .. user_data: | #!/bin/bash -v apt-get update apt-get install ant
该脚本也可以在 Heat 模板的外部: