Skip to content
This repository has been archived by the owner on Jan 10, 2020. It is now read-only.

Commit

Permalink
removed kops support
Browse files Browse the repository at this point in the history
  • Loading branch information
Lars Burfeindt authored and markusjura committed Oct 9, 2018
1 parent 7cff53f commit c1f3f2a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
8 changes: 2 additions & 6 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
# - Scala
# - SBT
# - kubectl
# - kops
# - AWS CLI
# - Docker

Expand All @@ -13,7 +12,6 @@ FROM openjdk:8u171
ENV SCALA_VERSION=2.12.7
ENV SBT_VERSION=1.2.3
ENV KUBECTL_VERSION=v1.10.4
ENV KOPS_VERSION=1.10.0
ENV HOME=/config

# Scala expects this file
Expand Down Expand Up @@ -44,15 +42,13 @@ RUN ./awscli-bundle/install -i /usr/local/aws -b /usr/local/bin/aws && \
rm awscli-bundle.zip && \
rm -Rf awscli-bundle

# Install kubectl and kops
# Install kubectl
# Note: Latest version may be found on:
# https://aur.archlinux.org/packages/kubectl-bin/
RUN set -x \
&& curl -O --location --silent --show-error https://github.com/kubernetes/kops/releases/download/${KOPS_VERSION}/kops-linux-amd64 \
&& mv kops-linux-amd64 /usr/local/bin/kops \
&& curl -LO https://storage.googleapis.com/kubernetes-release/release/${KUBECTL_VERSION}/bin/linux/amd64/kubectl \
&& mv kubectl /usr/local/bin/kubectl \
&& chmod +x /usr/local/bin/kops /usr/local/bin/kubectl
&& chmod +x /usr/local/bin/kubectl

RUN set -x && \
chmod +x /usr/local/bin/kubectl && \
Expand Down
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ This repository contains **Dockerfile** of:
* [Scala](http://www.scala-lang.org)
* [sbt](http://www.scala-sbt.org)
* [kubectl](https://kubernetes.io/docs/reference/kubectl/overview/)
* [kops](https://github.com/kubernetes/kops)
* [AWS CLI](https://aws.amazon.com/cli/)
* [Docker](https://www.docker.com/)

Expand Down

0 comments on commit c1f3f2a

Please sign in to comment.