File tree 1 file changed +9
-1
lines changed
1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -36,10 +36,18 @@ ENV KUBESEAL=0.12.5
36
36
RUN echo "downloading kubeseal ${KUBESEAL}" && curl -sL https://github.com/bitnami-labs/sealed-secrets/releases/download/v${KUBESEAL}/kubeseal-linux-amd64 \
37
37
-o /usr/local/bin/kubeseal && chmod +x /usr/local/bin/kubeseal && kubeseal --version
38
38
39
- ENV KOPS=1.18.2
39
+ ENV KOPS=1.20.1
40
40
RUN curl -Lo kops https://github.com/kubernetes/kops/releases/download/v${KOPS}/kops-linux-amd64 \
41
41
&& chmod +x ./kops && mv ./kops /usr/local/bin/ && kops version
42
42
43
+ ENV TERRAFORM=1.0.0
44
+ RUN curl -Lo terraform.zip https://releases.hashicorp.com/terraform/${TERRAFORM}/terraform_${TERRAFORM}_linux_amd64.zip \
45
+ && unzip terraform.zip && chmod +x ./terraform && mv ./terraform /usr/local/bin/ && terraform version
46
+
47
+ ENV TERRAGRUNT=0.29.10
48
+ RUN curl -Lo terragrunt https://github.com/gruntwork-io/terragrunt/releases/download/v${TERRAGRUNT}/terragrunt_linux_amd64\
49
+ && chmod +x ./terragrunt && mv ./terragrunt /usr/local/bin/
50
+
43
51
RUN echo "downloading yq" && curl -sL https://github.com/mikefarah/yq/releases/latest/download/yq_linux_amd64 \
44
52
-o /usr/local/bin/yq && chmod +x /usr/local/bin/yq && yq --version
45
53
You can’t perform that action at this time.
0 commit comments