본문 바로가기
AWS/Part 4. Ch03 패커를 이용한 머신 이미지 관리

CH03_01 패커 소개

by Engineer-Lee 2022. 6. 7.
반응형

패커는 이미지 빌더이다.

AWS ec2 같은 경우에는 AMI, Docker 같은 경우에는 Image 와 같이 여러 플랫폼들의 머신 이미지들을 하나의 소스 설정으로 생성시킨다.

 

패커의 상태는 코드로 관리할 수 있게에 GitOps를 통해 협업이 가능해진다.

 

페커의 템플릿은 HCL 템플릿과 JSON 템플릿으로 두 가지 타입이 있다. 현재는 HCL 템플릿이 주로 사용된다.

https://www.packer.io/docs/templates/hcl_templates

 

Packer by HashiCorp

Packer uses text files to describe infrastructure and to set variables. These text files are called Packer _configurations_ and are written in the HCL2 HashiCorp Configuration Language.

www.packer.io

 

반응형