Skip to content

Commit

Permalink
Software Updated
Browse files Browse the repository at this point in the history
  • Loading branch information
snw35 committed Nov 27, 2022
1 parent dae4905 commit c414d0d
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 25 deletions.
22 changes: 11 additions & 11 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Cloud environment container
# Provides a suite of cloud tools for AWS, GCP and Kubernetes

FROM alpine:3.17
FROM alpine:3.17.0

WORKDIR /usr/bin/

Expand Down Expand Up @@ -129,10 +129,10 @@ RUN wget $TERRAFORM_URL/$TERRAFORM_FILENAME \

# Install terragrunt
# From https://github.com/gruntwork-io/terragrunt/releases
ENV TERRAGRUNT_VERSION 0.40.2
ENV TERRAGRUNT_VERSION 0.41.0
ENV TERRAGRUNT_URL https://github.com/gruntwork-io/terragrunt/releases/download/v$TERRAGRUNT_VERSION
ENV TERRAGRUNT_FILENAME terragrunt_linux_amd64
ENV TERRAGRUNT_SHA256 f943e4e4eb6069906ebb850067b7192dd86c6772ac0802b0bd5b3d44a212d7b4
ENV TERRAGRUNT_SHA256 96a843ba998a58339a1fc1f7426848cf4afeb0bcb0f7cad749f86a1366aa00e1

RUN wget $TERRAGRUNT_URL/$TERRAGRUNT_FILENAME \
&& echo "$TERRAGRUNT_SHA256 ./$TERRAGRUNT_FILENAME" | sha256sum -c - \
Expand All @@ -157,10 +157,10 @@ RUN wget $PACKER_URL/$PACKER_FILENAME \
# Install aws-iam-authenticator
# From https://docs.aws.amazon.com/eks/latest/userguide/install-aws-iam-authenticator.html
# https://github.com/kubernetes-sigs/aws-iam-authenticator/releases
ENV AWS_IAM_AUTH_VERSION 0.5.11
ENV AWS_IAM_AUTH_VERSION 0.5.10
ENV AWS_IAM_AUTH_URL https://github.com/kubernetes-sigs/aws-iam-authenticator/releases/download/v${AWS_IAM_AUTH_VERSION}
ENV AWS_IAM_AUTH_FILENAME aws-iam-authenticator_${AWS_IAM_AUTH_VERSION}_linux_amd64
ENV AWS_IAM_AUTH_SHA256 c2bd2760e96444683b2e132af9385df8a03bc3b3cba1146189754e6212d4f22b
ENV AWS_IAM_AUTH_SHA256 7b4478a699cf9814f3d39b61586d8f1db7b4a7103a089b653cefcd5dc587ed21

RUN wget $AWS_IAM_AUTH_URL/$AWS_IAM_AUTH_FILENAME \
&& echo "$AWS_IAM_AUTH_SHA256 ./$AWS_IAM_AUTH_FILENAME" | sha256sum -c - \
Expand Down Expand Up @@ -190,10 +190,10 @@ RUN wget $KUBECTX_URL/$KUBECTX_FILENAME \

# Install Kops
# From https://github.com/kubernetes/kops/releases
ENV KOPS_VERSION 1.25.2
ENV KOPS_VERSION 1.25.3
ENV KOPS_URL https://github.com/kubernetes/kops/releases/download/v${KOPS_VERSION}
ENV KOPS_FILENAME kops-linux-amd64
ENV KOPS_SHA256 abf4741de50d97935146c9b682e3ecc795343571d7aff0b9a52982d7559380dd
ENV KOPS_SHA256 991fcccc10d2d7bce9078e3d65f92ff50f205602d3a55b43ea0907667fe91e6c

RUN wget $KOPS_URL/$KOPS_FILENAME \
&& echo "$KOPS_SHA256 ./$KOPS_FILENAME" | sha256sum -c - \
Expand Down Expand Up @@ -234,10 +234,10 @@ RUN wget $K9S_URL/$K9S_FILENAME \

# Install flux2
# From https://github.com/fluxcd/flux2/releases
ENV FLUX2_VERSION 0.36.0
ENV FLUX2_VERSION 0.37.0
ENV FLUX2_URL https://github.com/fluxcd/flux2/releases/download/v${FLUX2_VERSION}
ENV FLUX2_FILENAME flux_${FLUX2_VERSION}_linux_amd64.tar.gz
ENV FLUX2_SHA256 ee576b7251e4ba2f50a685f3391999156505feda5f8e55e96b160903c14accf2
ENV FLUX2_SHA256 28717941414b212f4e4521f9f960f5cf75b901178edc6d03c278be7e43025a0f

RUN wget $FLUX2_URL/$FLUX2_FILENAME \
&& echo "$FLUX2_SHA256 ./$FLUX2_FILENAME" | sha256sum -c - \
Expand Down Expand Up @@ -377,10 +377,10 @@ RUN wget $AWS_CONNECT_URL/$AWS_CONNECT_FILENAME \


# Install AWS CLI v2
ENV AWS_CLI_VERSION 2.9.0
ENV AWS_CLI_VERSION 2.9.1
ENV AWS_CLI_URL https://awscli.amazonaws.com
ENV AWS_CLI_FILENAME awscli-exe-linux-x86_64-${AWS_CLI_VERSION}.zip
ENV AWS_CLI_SHA256 26d24165b8eaf1141fde1c69742169025802ff8c135c7875f4e494a8eede3fa5
ENV AWS_CLI_SHA256 1ad26363e566283647d9b91a16edeb78ca48a82e3f7292dc0a00a26ba59bfd69

RUN wget $AWS_CLI_URL/$AWS_CLI_FILENAME \
&& echo "$AWS_CLI_SHA256 ./$AWS_CLI_FILENAME" | sha256sum -c - \
Expand Down
14 changes: 7 additions & 7 deletions new_ver.json
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
{
"AWS_CLI": "2.9.0",
"AWS_IAM_AUTH": "0.5.11",
"AWS_CLI": "2.9.1",
"AWS_IAM_AUTH": "0.5.10",
"AWS_OKTA": "1.0.11",
"BASE": "3.17",
"BASE": "3.17.0",
"CLOUD_NUKE": "0.21.0",
"CONFD": "0.16.0",
"EKSCTL": "0.120.0",
"FLUX2": "0.36.0",
"EKSCTL": "0.121.0",
"FLUX2": "0.37.0",
"GLIBC": "2.35-r0",
"HELM": "3.10.2",
"K9S": "0.26.7",
"KOMPOSE": "1.27.0",
"KOPS": "1.25.2",
"KOPS": "1.25.3",
"KUBECTL": "1.25.4",
"KUBECTX": "0.9.4",
"PACKER": "1.8.4",
"TERRAFORM": "1.3.5",
"TERRAFORM_DOCS": "0.16.0",
"TERRAGRUNT": "0.40.2"
"TERRAGRUNT": "0.41.0"
}
14 changes: 7 additions & 7 deletions old_ver.json
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
{
"AWS_CLI": "2.9.0",
"AWS_IAM_AUTH": "0.5.11",
"AWS_CLI": "2.9.1",
"AWS_IAM_AUTH": "0.5.10",
"AWS_OKTA": "1.0.11",
"BASE": "3.17",
"BASE": "3.17.0",
"CLOUD_NUKE": "0.21.0",
"CONFD": "0.16.0",
"EKSCTL": "0.120.0",
"FLUX2": "0.36.0",
"EKSCTL": "0.121.0",
"FLUX2": "0.37.0",
"GLIBC": "2.35-r0",
"HELM": "3.10.2",
"K9S": "0.26.7",
"KOMPOSE": "1.27.0",
"KOPS": "1.25.2",
"KOPS": "1.25.3",
"KUBECTL": "1.25.4",
"KUBECTX": "0.9.4",
"PACKER": "1.8.4",
"TERRAFORM": "1.3.5",
"TERRAFORM_DOCS": "0.16.0",
"TERRAGRUNT": "0.40.2"
"TERRAGRUNT": "0.41.0"
}

0 comments on commit c414d0d

Please sign in to comment.