설치 버전
chef 12 / CentOS 6.5
새로운 요리책 (레서피) 만들기
(workstation 에서 ChefDK 설치했다는 전제에서 설명)
$ knife cookbook create (요리책이름)
cookbooks/some-chapter/
├── attributes
├── CHANGELOG.md
├── definitions
├── files
│ └── default
├── libraries
├── metadata.rb
├── providers
├── README.md
├── recipes
│ └── default.rb
├── resources
└── templates
└── default
위와 같은 형태로 폴더 구조 및 파일이 생성이 된다
recipe나 template, attribute, metadata 작업을 한 후에 간단한 검증을 하려면
$ knife cookbook test (요리명) [-o (cookbooks 경로)]
$ foodcritic (요리책경로)
참고 링크
https://docs.chef.io/foodcritic.html
http://neverstopbuilding.com/chef-broiler-plate
요리책을 서버에 등록
$ knife upload cookbooks
참고 링크
https://docs.chef.io/knife_upload.html
client를 요리하기
client에 요리목록 추가/제거하기
노드에 run_list 작업 지시
client에 요리목록 추가/제거하기
$ knife node run_list add (node name) 'recipe[요리명]'
$ knife node run_list remove (node name) 'recipe[요리명]'
전체 수정도 가능$ knife node edit (node name)
(에디터가 설정되지 않았다는 에러가 뜬다면 [$ export EDITOR=vi] 정도로 해결)
edit 화면에서
run-list 부분에 요리책이름을 추가/수정한다
"run_list": [
"recipe[요리명]"
]
노드에 run_list 작업 지시
$ knife ssh 'name:(node name)' 'sudo chef-client --server https://chef-server [-N (node name)]'
댓글 없음:
댓글 쓰기