我正在用SaltStack弄湿我的脚。我已经创建了我的第一个状态(一个带有静态配置的Vim安装程序),而我正在处理我的第二个状态。
不幸的是,我希望我的状态安装的应用程序没有Ubuntu软件包。我将不得不自己构建应用程序。使用Salt进行“configure-make-install”类型安装是否有“最佳实践”?或者我应该只使用cmd吗?
特别是,如果我是手工做的话,我会按照以下方式做点什么:
wget -c http://example.com/foo-3.4.3.tar.gz
tar xzf foo-3.4.3.tar.gz
cd foo-3.4.3
./configure --prefix=$PREFIX && make && make install
答案 0 :(得分:23)
如果您愿意,可以使用状态模块来抽象前两行。
file.managed
:http://docs.saltstack.com/ref/states/all/salt.states.file.html archive.extracted
:http://docs.saltstack.com/ref/states/all/salt.states.archive.html 但你也可以在目标小兵上运行命令。
install-foo:
cmd.run:
- name: |
cd /tmp
wget -c http://example.com/foo-3.4.3.tar.gz
tar xzf foo-3.4.3.tar.gz
cd foo-3.4.3
./configure --prefix=/usr/local
make
make install
- cwd: /tmp
- shell: /bin/bash
- timeout: 300
- unless: test -x /usr/local/bin/foo
只需确保包含unless
参数即可使脚本具有幂等性。
或者,将bash脚本分发给minion并执行。看到: How can I execute multiple commands using Salt Stack?
至于best practice
?我建议使用fpm
创建.deb或.rpm包并安装它。至少,将那个tarball复制到salt master并且不再依赖外部资源三年后就可以了。
答案 1 :(得分:10)
让我们假设foo-3.4.3.tar.gz
被检入GitHub。您可以在状态文件中使用以下方法:
git:
pkg.installed
https://github.com/nomen/foo.git:
git.latest:
- rev: master
- target: /tmp/foo
- user: nomen
- require:
- pkg: git
foo_deployed:
cmd.run:
- cwd: /tmp/foo
- user: nomen
- name: |
./configure --prefix=/usr/local
make
make install
- require:
- git: https://github.com/nomen/foo.git
您的配置prefix
位置可以作为salt pillar传递。如果构建过程更复杂,您可以考虑编写custom state。