Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Freeze eksctl version in aws image #972

Closed
wants to merge 3 commits into from
Closed
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
4 changes: 2 additions & 2 deletions images/Dockerfile.py3.aws
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ RUN curl -o aws-iam-authenticator https://amazon-eks.s3.us-west-2.amazonaws.com/
chmod a+x /usr/local/bin/aws-iam-authenticator

# Install eksctl
RUN curl --silent --location "https://github.com/weaveworks/eksctl/releases/latest/download/eksctl_$(uname -s)_amd64.tar.gz" | tar xz -C /tmp && \
RUN curl --silent --location "https://github.com/weaveworks/eksctl/releases/download/v0.76.0/eksctl_$(uname -s)_amd64.tar.gz" | tar xz -C /tmp && \
mv /tmp/eksctl /usr/local/bin && \
chmod a+x /usr/local/bin/eksctl

Expand Down Expand Up @@ -90,4 +90,4 @@ ENV CLOUD_PROVIDER aws

ENV PATH=/root/go/bin:${PATH}

ENTRYPOINT ["/usr/local/bin/run_workflows.sh"]
ENTRYPOINT ["/usr/local/bin/run_workflows.sh"]