Merge pull request #5717 from skierkowski/guide-cicd-improvements

Improving some details on the packer-on-cicd guide
This commit is contained in:
Matthew Hooker 2017-12-18 15:28:48 -08:00 committed by GitHub
commit d1fe0f1a6e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 6 deletions

View File

@ -24,11 +24,12 @@ directly, but you may also fork it for the same results.
## 1. Provision a Bare-metal Machine
For the purposes of this example, we will run on a bare-metal instance from
[Packet.net](https://www.packet.net/). If you are a first time user of
Packet.net, the Packet.net team has provided HashiCorp the coupon code `hash25`
which you can use for $25 off to test out this guide. You can use
a `baremetal_0` server type for testing, but for regular use, the `baremetal_1`
instance may be a better option.
[Packet](https://www.packet.net/). If you are a first time user of
Packet, the Packet team has provided HashiCorp the coupon code `hashi25`
which you can use for $25 off to test out this guide and up to
30% if you decide to
reserve ongoing servers (email help@packet.net for details). You can use a `baremetal_0` server type for
testing, but for regular use, the `baremetal_1` instance may be a better option.
There is also a [Packet
Provider](https://www.terraform.io/docs/providers/packet/index.html) in

View File

@ -41,5 +41,5 @@ In your build configuration in TeamCity Server, add an additional **Build Step:
Command Line** and set the **Script content** field to the following:
```shell
awscli s3 cp . s3://bucket/ --exclude “*” --include “*.iso”
awscli s3 cp . s3://bucket/ --exclude “*” --include “*.ovf"
```