Skip to content

Commit 351f22f

Browse files
committed
v0.10.1, added tooling version output in packer build, updated tooling versions
Signed-off-by: Glen Yu <glen.yu@gmail.com>
1 parent a8415b0 commit 351f22f

8 files changed

Lines changed: 23 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,14 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
66

77

8+
## [0.10.1] - 2024-05-20
9+
### Added
10+
- Packer build outputs installed tooling version
11+
### Changed
12+
- Updated Consul version from `1.18.1` to `1.18.2`
13+
- Updated Nomad version from `1.7.6` to `1.7.7`
14+
- Updated Vault version from `1.16.0` to `1.16.2`
15+
816
## [0.10.0] - 2024-04-03
917
### Added
1018
- `attribute_condition = "assertion.repository_owner=='${var.github_org}'"` to Workload Identity Pool as per [recommended security practices](https://cloud.google.com/iam/docs/workload-identity-federation-with-deployment-pipelines#conditions)

base-docker/base_docker.pkr.hcl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,7 @@ build {
108108
expect_disconnect = "true"
109109
inline = [
110110
"which docker",
111+
"docker --version",
111112
"sudo apt-get clean",
112113
"echo '=============================================='",
113114
"echo 'BUILD COMPLETE'",

hashistack/consul_base.pkr.hcl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,7 @@ build {
139139
expect_disconnect = "true"
140140
inline = [
141141
"which consul",
142+
"consul --version",
142143
"sudo apt-get clean",
143144
"echo '=============================================='",
144145
"echo 'BUILD COMPLETE'",

hashistack/consul_server.pkr.hcl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@ build {
7272
expect_disconnect = "true"
7373
inline = [
7474
"which consul",
75+
"consul --version",
7576
"echo '=============================================='",
7677
"echo 'BUILD COMPLETE'",
7778
"echo '=============================================='"

hashistack/nomad_client.pkr.hcl

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -198,9 +198,15 @@ build {
198198
expect_disconnect = "true"
199199
inline = [
200200
"which docker",
201+
"docker --version",
202+
"echo ''",
201203
"which java",
204+
"java",
205+
"echo ''",
202206
"which consul",
207+
"consul --version",
203208
"which nomad",
209+
"nomad --version",
204210
"echo '=============================================='",
205211
"echo 'BUILD COMPLETE'",
206212
"echo '=============================================='"

hashistack/nomad_server.pkr.hcl

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,9 @@ build {
107107
expect_disconnect = "true"
108108
inline = [
109109
"which consul",
110+
"consul --version",
110111
"which nomad",
112+
"nomad --version",
111113
"echo '=============================================='",
112114
"echo 'BUILD COMPLETE'",
113115
"echo '=============================================='"

hashistack/variables.pkrvars.hcl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
zone = "northamerica-northeast2-c"
22
arch = "amd64"
33

4-
consul_version = "1.18.1"
5-
nomad_version = "1.7.6"
6-
vault_version = "1.16.0"
4+
consul_version = "1.18.2"
5+
nomad_version = "1.7.7"
6+
vault_version = "1.16.2"

hashistack/vault_base.pkr.hcl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -146,6 +146,7 @@ build {
146146
expect_disconnect = "true"
147147
inline = [
148148
"which vault",
149+
"vault --version",
149150
"sudo apt-get clean",
150151
"echo '=============================================='",
151152
"echo 'BUILD COMPLETE'",

0 commit comments

Comments
 (0)