From 72830f0023833fd261d1a3410c2814ca04a39a8b Mon Sep 17 00:00:00 2001 From: Jonathan Cobb Date: Tue, 17 Nov 2020 15:43:12 -0500 Subject: [PATCH] update docs --- docs/packer.md | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/docs/packer.md b/docs/packer.md index cd71df14..49d1497f 100644 --- a/docs/packer.md +++ b/docs/packer.md @@ -29,11 +29,11 @@ When using the API, set the `launchType` property in the JSON request that creat ## Launching a Bubble while Packer Images are Building If you try to launch a Bubble before the required packer image is ready, your Bubble launcher will detect that the image -is in the process of being built, and wait until it is ready before trying to use them. +is in the process of being built, and wait until it is ready before trying to use it. ## Image Validity The packer images are tied to a specific Bubble version. As long as the Bubble API launcher can find packer images -that match its version, it will be able to launch Bubbles. +that match its own version, it will be able to launch Bubbles. When your Bubble is upgraded, its version changes, so the old packer images are no longer valid. @@ -61,3 +61,17 @@ appropriately for your Bubble. For example: ./bin/pack_bubble +## Packer Build Status +When packer images are being built, you can check status with: + + ./bin/pack_status + +This will show all running packer jobs, and all completed packer images. + +To only see running packer jobs: + + ./bin/pack_status running + +To only see completed packer images: + + ./bin/pack_status completed