github.com/kikitux/packer@v0.10.1-0.20160322154024-6237df566f9f/website/source/intro/why.html.md (about) 1 --- 2 description: | 3 Pre-baked machine images have a lot of advantages, but most have been unable to 4 benefit from them because images have been too tedious to create and manage. 5 There were either no existing tools to automate the creation of machine images 6 or they had too high of a learning curve. The result is that, prior to Packer, 7 creating machine images threatened the agility of operations teams, and 8 therefore aren't used, despite the massive benefits. 9 layout: intro 10 next_title: Packer Use Cases 11 next_url: '/intro/use-cases.html' 12 page_title: 'Why Use Packer?' 13 prev_url: '/intro/index.html' 14 ... 15 16 # Why Use Packer? 17 18 Pre-baked machine images have a lot of advantages, but most have been unable to 19 benefit from them because images have been too tedious to create and manage. 20 There were either no existing tools to automate the creation of machine images 21 or they had too high of a learning curve. The result is that, prior to Packer, 22 creating machine images threatened the agility of operations teams, and 23 therefore aren't used, despite the massive benefits. 24 25 Packer changes all of this. Packer is easy to use and automates the creation of 26 any type of machine image. It embraces modern configuration management by 27 encouraging you to use a framework such as Chef or Puppet to install and 28 configure the software within your Packer-made images. 29 30 In other words: Packer brings pre-baked images into the modern age, unlocking 31 untapped potential and opening new opportunities. 32 33 ## Advantages of Using Packer 34 35 ***Super fast infrastructure deployment***. Packer images allow you to launch 36 completely provisioned and configured machines in seconds, rather than several 37 minutes or hours. This benefits not only production, but development as well, 38 since development virtual machines can also be launched in seconds, without 39 waiting for a typically much longer provisioning time. 40 41 ***Multi-provider portability***. Because Packer creates identical images for 42 multiple platforms, you can run production in AWS, staging/QA in a private cloud 43 like OpenStack, and development in desktop virtualization solutions such as 44 VMware or VirtualBox. Each environment is running an identical machine image, 45 giving ultimate portability. 46 47 ***Improved stability***. Packer installs and configures all the software for a 48 machine at the time the image is built. If there are bugs in these scripts, 49 they'll be caught early, rather than several minutes after a machine is 50 launched. 51 52 ***Greater testability***. After a machine image is built, that machine image 53 can be quickly launched and smoke tested to verify that things appear to be 54 working. If they are, you can be confident that any other machines launched from 55 that image will function properly. 56 57 Packer makes it extremely easy to take advantage of all these benefits. 58 59 What are you waiting for? Let's get started!