Merge pull request #1 from mechagrue/patch-1

Updated text
This commit is contained in:
jasminSPC 2016-07-02 00:26:52 +02:00 committed by GitHub
commit 478181d7f4
1 changed files with 12 additions and 12 deletions

View File

@ -3,7 +3,7 @@ description: |
The `profitbricks` Packer builder is able to create new images for use with
ProfitBricks. The builder takes a source image, runs any provisioning necessary
on the image after launching it, then snapshots it into a reusable image. This
reusable image can then be used as the foundation of new servers that are
reusable image can then be used as the foundation for new servers that are
launched within ProfitBricks.
layout: docs
page_title: ProfitBricks Builder
@ -17,15 +17,15 @@ The `profitbricks` Packer builder is able to create new images for use with
[ProfitBricks](https://www.profitbricks.com). The builder takes a source image,
runs any provisioning necessary on the image after launching it, then snapshots
it into a reusable image. This reusable image can then be used as the foundation
of new servers that are launched within ProfitBricks.
for new servers that are launched within ProfitBricks.
The builder does *not* manage images. Once it creates an image, it is up to you
to use it or delete it.
to either use it or delete it.
## Configuration Reference
There are many configuration options available for the builder. They are
segmented below into two categories: required and optional parameters. Within
divided into two categories: required and optional parameters. Within
each category, the available configuration keys are alphabetized.
In addition to the options listed here, a
@ -35,30 +35,30 @@ builder.
### Required:
- `pbpasswrod` (string) - ProfitBricks password. It
can also be specified via environment variable `PROFITBRICKS_PASSWORD`,
can also be specified via the environment variable `PROFITBRICKS_PASSWORD`,
if set.
- `pbusername` (string) - ProfitBricks username. It
can also be specified via environment variable `PROFITBRICKS_USERNAME`,
can also be specified via the environment variable `PROFITBRICKS_USERNAME`,
if set.
- `servername` (string) - The name of the server that will be created.
### Optional:
- `cores` (int) - Number of server cores default value 4.
- `cores` (int) - Number of server cores. Default value is 4.
- `disksize` (string) - Desired disk size default value 50gb
- `disksize` (string) - Desired disk size. Default value is 50GB.
- `disktype` (string) - Desired disk type default value "HDD"
- `disktype` (string) - Desired disk type. The default value is "HDD".
- `image` (string) - ProfitBricks volume image default value `Ubuntu-16.04`
- `image` (string) - ProfitBricks volume image. The default value is `Ubuntu-16.04`.
- `pburl` (string) - ProfitBricks REST Url.
- `ram` (int) - RAM size for the server default value 2048.
- `ram` (int) - RAM size for the server. The default value is 2048.
- `region` (string) - ProfitBricks region default value "us/las".
- `region` (string) - ProfitBricks region. The default value is "us/las".
## Basic Example