From 1bc6a445ef20af597744cbd6aff0c63b49637826 Mon Sep 17 00:00:00 2001 From: Maciej Skierkowski Date: Mon, 18 Dec 2017 14:04:46 -0800 Subject: [PATCH 1/4] Fixing typo in coupon code --- .../source/guides/packer-on-cicd/build-virtualbox-image.html.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/source/guides/packer-on-cicd/build-virtualbox-image.html.md b/website/source/guides/packer-on-cicd/build-virtualbox-image.html.md index 7360e3931..056f3486a 100644 --- a/website/source/guides/packer-on-cicd/build-virtualbox-image.html.md +++ b/website/source/guides/packer-on-cicd/build-virtualbox-image.html.md @@ -25,7 +25,7 @@ directly, but you may also fork it for the same results. 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` +Packet.net, the Packet.net team has provided HashiCorp the coupon code `hashi25` 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. From f88cd61e703dc23eb17c8de0fd3acef9571dfa94 Mon Sep 17 00:00:00 2001 From: Maciej Skierkowski Date: Mon, 18 Dec 2017 14:05:12 -0800 Subject: [PATCH 2/4] Renaming 'Packet.net' to 'Packet' --- .../guides/packer-on-cicd/build-virtualbox-image.html.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/website/source/guides/packer-on-cicd/build-virtualbox-image.html.md b/website/source/guides/packer-on-cicd/build-virtualbox-image.html.md index 056f3486a..0b5754f4c 100644 --- a/website/source/guides/packer-on-cicd/build-virtualbox-image.html.md +++ b/website/source/guides/packer-on-cicd/build-virtualbox-image.html.md @@ -24,8 +24,8 @@ 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 `hashi25` +[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. You can use a `baremetal_0` server type for testing, but for regular use, the `baremetal_1` instance may be a better option. From 37ce11fa0e1799c8c6f8669d09f6cb64bf914a4c Mon Sep 17 00:00:00 2001 From: Maciej Skierkowski Date: Mon, 18 Dec 2017 14:17:27 -0800 Subject: [PATCH 3/4] Add details about the 30% off ongoing coupon. --- .../guides/packer-on-cicd/build-virtualbox-image.html.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/website/source/guides/packer-on-cicd/build-virtualbox-image.html.md b/website/source/guides/packer-on-cicd/build-virtualbox-image.html.md index 0b5754f4c..506db22ce 100644 --- a/website/source/guides/packer-on-cicd/build-virtualbox-image.html.md +++ b/website/source/guides/packer-on-cicd/build-virtualbox-image.html.md @@ -26,9 +26,10 @@ directly, but you may also fork it for the same results. For the purposes of this example, we will run on a bare-metal instance from [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. You can use -a `baremetal_0` server type for testing, but for regular use, the `baremetal_1` -instance may be a better option. +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 From 7ee50ff9264dd25be4a76bb9d0d6554dd009dc7c Mon Sep 17 00:00:00 2001 From: Maciej Skierkowski Date: Mon, 18 Dec 2017 15:12:04 -0800 Subject: [PATCH 4/4] Should be OVF As a side note I will point out that the bento projects will use vagrant to package up the image into a .box file. But using OVF as we are assuming not to be using vagrant. --- .../guides/packer-on-cicd/upload-images-to-artifact.html.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/source/guides/packer-on-cicd/upload-images-to-artifact.html.md b/website/source/guides/packer-on-cicd/upload-images-to-artifact.html.md index 9916fd871..ca0b1a2d8 100644 --- a/website/source/guides/packer-on-cicd/upload-images-to-artifact.html.md +++ b/website/source/guides/packer-on-cicd/upload-images-to-artifact.html.md @@ -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" ```