This repository was archived by the owner on Jan 10, 2020. It is now read-only.
File tree 2 files changed +2
-7
lines changed
2 files changed +2
-7
lines changed Original file line number Diff line number Diff line change 2
2
# - Scala
3
3
# - SBT
4
4
# - kubectl
5
- # - kops
6
5
# - AWS CLI
7
6
# - Docker
8
7
@@ -13,7 +12,6 @@ FROM openjdk:8u171
13
12
ENV SCALA_VERSION=2.12.7
14
13
ENV SBT_VERSION=1.2.3
15
14
ENV KUBECTL_VERSION=v1.10.4
16
- ENV KOPS_VERSION=1.10.0
17
15
ENV HOME=/config
18
16
19
17
# Scala expects this file
@@ -44,15 +42,13 @@ RUN ./awscli-bundle/install -i /usr/local/aws -b /usr/local/bin/aws && \
44
42
rm awscli-bundle.zip && \
45
43
rm -Rf awscli-bundle
46
44
47
- # Install kubectl and kops
45
+ # Install kubectl
48
46
# Note: Latest version may be found on:
49
47
# https://aur.archlinux.org/packages/kubectl-bin/
50
48
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 \
53
49
&& curl -LO https://storage.googleapis.com/kubernetes-release/release/${KUBECTL_VERSION}/bin/linux/amd64/kubectl \
54
50
&& mv kubectl /usr/local/bin/kubectl \
55
- && chmod +x /usr/local/bin/kops /usr/local/bin/ kubectl
51
+ && chmod +x /usr/local/bin/kubectl
56
52
57
53
RUN set -x && \
58
54
chmod +x /usr/local/bin/kubectl && \
Original file line number Diff line number Diff line change @@ -4,7 +4,6 @@ This repository contains **Dockerfile** of:
4
4
* [ Scala] ( http://www.scala-lang.org )
5
5
* [ sbt] ( http://www.scala-sbt.org )
6
6
* [ kubectl] ( https://kubernetes.io/docs/reference/kubectl/overview/ )
7
- * [ kops] ( https://github.com/kubernetes/kops )
8
7
* [ AWS CLI] ( https://aws.amazon.com/cli/ )
9
8
* [ Docker] ( https://www.docker.com/ )
10
9
You can’t perform that action at this time.
0 commit comments