Skip to content

Commit 30303d8

Browse files
authored
Fix awscli and kubectl versions to stable version for canary (#156)
Same changes as #155 By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
1 parent e28ce3a commit 30303d8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/canary/Dockerfile.canary

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ RUN apt-get update && apt-get install -y curl \
1515
unzip
1616

1717
# Install awscli
18-
RUN curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip" \
18+
RUN curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64-2.6.3.zip" -o "awscliv2.zip" \
1919
&& unzip -qq awscliv2.zip \
2020
&& ./aws/install
2121

@@ -25,7 +25,7 @@ RUN apt-get update && apt install -y software-properties-common \
2525
&& apt update && apt install -y yq
2626

2727
# Install kubectl
28-
RUN curl -LO https://storage.googleapis.com/kubernetes-release/release/v1.18.6/bin/linux/amd64/kubectl \
28+
RUN curl -LO "https://dl.k8s.io/release/v1.24.0/bin/linux/amd64/kubectl" \
2929
&& chmod +x ./kubectl \
3030
&& cp ./kubectl /bin
3131

0 commit comments

Comments
 (0)