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

Commit c1f3f2a

Browse files
Lars Burfeindtmarkusjura
Lars Burfeindt
authored andcommitted
removed kops support
1 parent 7cff53f commit c1f3f2a

File tree

2 files changed

+2
-7
lines changed

2 files changed

+2
-7
lines changed

Dockerfile

+2-6
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
# - Scala
33
# - SBT
44
# - kubectl
5-
# - kops
65
# - AWS CLI
76
# - Docker
87

@@ -13,7 +12,6 @@ FROM openjdk:8u171
1312
ENV SCALA_VERSION=2.12.7
1413
ENV SBT_VERSION=1.2.3
1514
ENV KUBECTL_VERSION=v1.10.4
16-
ENV KOPS_VERSION=1.10.0
1715
ENV HOME=/config
1816

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

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

5753
RUN set -x && \
5854
chmod +x /usr/local/bin/kubectl && \

README.md

-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ This repository contains **Dockerfile** of:
44
* [Scala](http://www.scala-lang.org)
55
* [sbt](http://www.scala-sbt.org)
66
* [kubectl](https://kubernetes.io/docs/reference/kubectl/overview/)
7-
* [kops](https://github.com/kubernetes/kops)
87
* [AWS CLI](https://aws.amazon.com/cli/)
98
* [Docker](https://www.docker.com/)
109

0 commit comments

Comments
 (0)