- 厨师教程
- 厨师 - 主页
- 厨师 - 概述
- 厨师 - 建筑
- Chef - 版本控制系统设置
- 厨师 - 工作站设置
- Chef - 客户端设置
- 厨师 - 测试厨房设置
- 厨师 - 刀具设置
- 厨师 - 独奏设置
- 厨师 - 食谱
- Chef - 食谱依赖项
- 厨师 - 角色
- 厨师 - 环境
- Chef - Chef-Client 作为守护进程
- 厨师 - Chef-Shell
- 厨师 - 测试食谱
- 厨师 - 美食评论家
- 厨师 - ChefSpec
- 使用测试厨房测试食谱
- 厨师 - 节点
- 厨师 - 厨师-客户运行
- 高级厨师
- 动态配置菜谱
- 厨师 - 模板
- Chef - 带有 Chef DSL 的纯 Ruby
- 厨师 - 红宝石宝石与食谱
- 厨师 - 图书馆
- 厨师 - 定义
- Chef - 环境变量
- 厨师 - 数据袋
- Chef - 数据包脚本
- Chef - 跨平台食谱
- 厨师 - 资源
- 轻量级资源提供者
- 厨师 - 蓝图
- Chef - 文件和包
- 厨师 - 社区食谱
- 厨师有用的资源
- 厨师 - 快速指南
- 厨师 - 有用的资源
- 厨师 - 讨论
Chef - 文件和包
在 Chef 中,创建配置文件和移动包是关键组件。Chef 有多种管理方式。Chef 支持多种方式处理文件和软件包。
从第三方存储库安装软件包
步骤 1 - 编辑食谱的默认食谱。
vipin@laptop:~/chef-repo $ subl cookbooks/test_cookbook/recipes/default.rb include_recipe "apt" apt_repository "s3tools" do uri "http://s3tools.org/repo/deb-all" components ["stable/"] key "http://s3tools.org/repo/deb-all/stable/s3tools.key" action :add end package "s3cmd"
步骤 2 - 编辑元数据以添加对 apt 说明书的依赖项。
vipin@laptop:~/chef-repo $ subl cookbooks/my_cookbook/metadata.rb ... depends "apt"
步骤 3 - 将修改后的食谱上传到 Chef 服务器。
步骤 4 - 验证您尝试安装的软件包尚未安装。
步骤 5 - 验证默认存储库。
步骤 6 - 在节点上运行 Chef-Client。
步骤 7 - 验证是否安装了所需的软件包。
从源代码安装软件
如果需要安装一款无法作为给定平台的软件包提供的软件,则需要自行编译。在 Chef 中,我们可以通过使用脚本资源来做到这一点。
步骤 1 - 编辑默认配方。
vipin@laptop:~/chef-repo $ subl cookbooks/my_cookbook/recipes/ default.rb version = "1.3.9" bash "install_nginx_from_source" do cwd Chef::Config['file_cache_path'] code ≪-EOH wget http://nginx.org/download/nginx-#{version}.tar.gz tar zxf nginx-#{version}.tar.gz && cd nginx-#{version} && ./configure && make && make install EOH
步骤 2 - 将修改后的食谱上传到 Chef 服务器。
步骤 3 - 在节点上运行 Chef-Client。
步骤 4 - 验证 nginx 是否已安装。