From 90b6747e3d47b3a23739092282b40c9470de8ece Mon Sep 17 00:00:00 2001 From: "Ryan J. Price" Date: Mon, 10 May 2021 20:24:37 -0500 Subject: [PATCH] Edit CICD website guide to be more clear --- .../guides/packer-on-cicd/build-image-in-cicd.mdx | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/website/content/guides/packer-on-cicd/build-image-in-cicd.mdx b/website/content/guides/packer-on-cicd/build-image-in-cicd.mdx index 7405844ca..02a40f70c 100644 --- a/website/content/guides/packer-on-cicd/build-image-in-cicd.mdx +++ b/website/content/guides/packer-on-cicd/build-image-in-cicd.mdx @@ -10,12 +10,14 @@ images with Packer. - [How to Build Immutable Infrastructure with Packer and CircleCI Workflows](https://circleci.com/blog/how-to-build-immutable-infrastructure-with-packer-and-circleci-workflows/) - [Using Packer and Ansible to Build Immutable Infrastructure in CodeShip](https://blog.codeship.com/packer-ansible/) -The majority of the [Packer Builders](/docs/builders) can run in -a container or VM, a common model used by most CI/CD services. However, some -builders may take substantially longer without privilege escalation (like the -[QEMU builder](/docs/builders/qemu) for +The majority of the [Packer Builders](/docs/builders) can run just fine in a +container, a common model used by most CI/CD services. However, while it is +possible to run many builders in containers or nested virtualization, this may +require advanced configuration; examples include the [QEMU +builder](/docs/builders/qemu) for [KVM](https://www.linux-kvm.org/page/Main_Page) and -[Xen](https://www.xenproject.org/)). +[Xen](https://www.xenproject.org/)), or the [VirtualBox +builder](/docs/builders/virtualbox) for OVA or OVF virtual machines. The [Building a VirtualBox Image with Packer in TeamCity](/guides/packer-on-cicd/build-virtualbox-image) guide shows