Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 20 additions & 20 deletions pkg/dependencies/checksums_generated.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ RUN wget -q "https://releases.hashicorp.com/terraform/${TERRAFORM_VERSION}/terra
rm terraform.zip

# Install Packer
ARG PACKER_VERSION=1.8.6
ARG PACKER_VERSION=1.15.3
RUN wget -q "https://releases.hashicorp.com/packer/${PACKER_VERSION}/packer_${PACKER_VERSION}_linux_amd64.zip" -O packer.zip && \
unzip packer.zip && \
mv packer /usr/local/bin/ && \
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ To build and use this Dockerfile, you'll need:
The following build arguments can be used to customize the build process:
* **`BASE_IMAGE`**: The base image to use for the build. Defaults to `gcr.io/google.com/cloudsdktool/google-cloud-cli:stable`.
* **`TERRAFORM_VERSION`**: The version of Terraform to install. Defaults to `1.12.2`.
* **`PACKER_VERSION`**: The version of Packer to install. Defaults to `1.8.6`.
* **`PACKER_VERSION`**: The version of Packer to install. Defaults to `1.15.3`.
* **`GO_VERSION`**: The version of Go to install. Defaults to `1.23.0`.
* **`CLUSTER_TOOLKIT_REF`**: The [Cluster Toolkit repository's](https://github.com/GoogleCloudPlatform/cluster-toolkit/releases) branch or tag from which to build Cluster Toolkit. Defaults to the `main` branch, which is the latest official release.

Expand Down
2 changes: 1 addition & 1 deletion tools/update-dependencies.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
set -euo pipefail

TERRAFORM_VERSION="1.12.2"
PACKER_VERSION="1.15.0"
PACKER_VERSION="1.15.3"
Comment thread
AdarshK15 marked this conversation as resolved.
OUTPUT_FILE="pkg/dependencies/checksums_generated.go"

mkdir -p "$(dirname "$OUTPUT_FILE")"
Expand Down
Loading