Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix builders links #135

Merged
merged 1 commit into from
Apr 12, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions docs/builders/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -14,30 +14,30 @@ Packer is able to create Outscale OMIs. To achieve this, Packer comes with
multiple builders depending on the strategy you want to use to build the OMI.
Packer supports the following builders at the moment:

- [outscale-bsu](/docs/builders/outscale-bsu) - Create BSU-backed OMIs by
- [outscale-bsu](/docs/builders/outscale-bsu.mdx) - Create BSU-backed OMIs by
launching a source OMI and re-packaging it into a new OMI after
provisioning. If in doubt, use this builder, which is the easiest to get
started with.

- [outscale-chroot](/docs/builders/outscale-chroot) - Create EBS-backed OMIs
- [outscale-chroot](/docs/builders/outscale-chroot.mdx) - Create EBS-backed OMIs
from an existing OUTSCALE VM by mounting the root device and using a
[Chroot](https://en.wikipedia.org/wiki/Chroot) environment to provision
that device. This is an **advanced builder and should not be used by
newcomers**. However, it is also the fastest way to build an EBS-backed OMI
since no new OUTSCALE VM needs to be launched.

- [outscale-bsusurrogate](/docs/builders/outscale-bsusurrogate) - Create BSU-backed OMIs from scratch. Works similarly to the `chroot` builder but does
- [outscale-bsusurrogate](/docs/builders/outscale-bsusurrogate.mdx) - Create BSU-backed OMIs from scratch. Works similarly to the `chroot` builder but does
not require running in Outscale VM. This is an **advanced builder and should not be
used by newcomers**.

-> **Don't know which builder to use?** If in doubt, use the [outscale-bsu
builder](/docs/builders/outscale-bsu). It is much easier to use and Outscale generally recommends BSU-backed images nowadays.
builder](/docs/builders/outscale-bsu.mdx). It is much easier to use and Outscale generally recommends BSU-backed images nowadays.

# Outscale BSU Volume Builder

Packer is able to create Outscale BSU Volumes which are preinitialized with a filesystem and data.

- [outscale-bsuvolume](/docs/builders/outscale-bsuvolume) - Create EBS volumes by launching a source OMI with block devices mapped. Provision the VM, then destroy it, retaining the EBS volumes.
- [outscale-bsuvolume](/docs/builders/outscale-bsuvolume.mdx) - Create EBS volumes by launching a source OMI with block devices mapped. Provision the VM, then destroy it, retaining the EBS volumes.

## Authentication

Expand Down