Skip to content

Commit

Permalink
v0.10.1, added tooling version output in packer build, updated toolin…
Browse files Browse the repository at this point in the history
…g versions

Signed-off-by: Glen Yu <[email protected]>
  • Loading branch information
Neutrollized committed May 21, 2024
1 parent a8415b0 commit 351f22f
Show file tree
Hide file tree
Showing 8 changed files with 23 additions and 3 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,14 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).


## [0.10.1] - 2024-05-20
### Added
- Packer build outputs installed tooling version
### Changed
- Updated Consul version from `1.18.1` to `1.18.2`
- Updated Nomad version from `1.7.6` to `1.7.7`
- Updated Vault version from `1.16.0` to `1.16.2`

## [0.10.0] - 2024-04-03
### Added
- `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)
Expand Down
1 change: 1 addition & 0 deletions base-docker/base_docker.pkr.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,7 @@ build {
expect_disconnect = "true"
inline = [
"which docker",
"docker --version",
"sudo apt-get clean",
"echo '=============================================='",
"echo 'BUILD COMPLETE'",
Expand Down
1 change: 1 addition & 0 deletions hashistack/consul_base.pkr.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,7 @@ build {
expect_disconnect = "true"
inline = [
"which consul",
"consul --version",
"sudo apt-get clean",
"echo '=============================================='",
"echo 'BUILD COMPLETE'",
Expand Down
1 change: 1 addition & 0 deletions hashistack/consul_server.pkr.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ build {
expect_disconnect = "true"
inline = [
"which consul",
"consul --version",
"echo '=============================================='",
"echo 'BUILD COMPLETE'",
"echo '=============================================='"
Expand Down
6 changes: 6 additions & 0 deletions hashistack/nomad_client.pkr.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -198,9 +198,15 @@ build {
expect_disconnect = "true"
inline = [
"which docker",
"docker --version",
"echo ''",
"which java",
"java",
"echo ''",
"which consul",
"consul --version",
"which nomad",
"nomad --version",
"echo '=============================================='",
"echo 'BUILD COMPLETE'",
"echo '=============================================='"
Expand Down
2 changes: 2 additions & 0 deletions hashistack/nomad_server.pkr.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,9 @@ build {
expect_disconnect = "true"
inline = [
"which consul",
"consul --version",
"which nomad",
"nomad --version",
"echo '=============================================='",
"echo 'BUILD COMPLETE'",
"echo '=============================================='"
Expand Down
6 changes: 3 additions & 3 deletions hashistack/variables.pkrvars.hcl
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
zone = "northamerica-northeast2-c"
arch = "amd64"

consul_version = "1.18.1"
nomad_version = "1.7.6"
vault_version = "1.16.0"
consul_version = "1.18.2"
nomad_version = "1.7.7"
vault_version = "1.16.2"
1 change: 1 addition & 0 deletions hashistack/vault_base.pkr.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,7 @@ build {
expect_disconnect = "true"
inline = [
"which vault",
"vault --version",
"sudo apt-get clean",
"echo '=============================================='",
"echo 'BUILD COMPLETE'",
Expand Down

0 comments on commit 351f22f

Please sign in to comment.