summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCédric Ollivier <cedric.ollivier@orange.com>2018-09-01 21:48:32 +0200
committerCédric Ollivier <cedric.ollivier@orange.com>2018-09-02 10:05:44 +0200
commite1e45a4ae324a1f9894ab9dd173d894644ff47b5 (patch)
treea5dc55c031a8a6640ebceb74691f0cc7868c58b2
parent00ec114c0f387630dfa060bcd613baa10fd627c1 (diff)
Update Kubernetes to v1.11.2
Change-Id: If674867a7dc488c64fc3f0cda530560b5d306416 Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
-rw-r--r--docker/core/Dockerfile2
-rw-r--r--docker/healthcheck/Dockerfile7
2 files changed, 5 insertions, 4 deletions
diff --git a/docker/core/Dockerfile b/docker/core/Dockerfile
index 1c699c34..16a0a078 100644
--- a/docker/core/Dockerfile
+++ b/docker/core/Dockerfile
@@ -6,7 +6,7 @@ ARG OPNFV_TAG=master
RUN apk --no-cache add --update python py-pip bash git grep && \
git clone --depth 1 https://gerrit.opnfv.org/gerrit/functest-kubernetes /src/functest-kubernetes && \
- (cd /src/functest-kubernetes && git fetch --tags origin $BRANCH && git checkout FETCH_HEAD) && \
+ (cd /src/functest-kubernetes && git fetch --depth 1 --tags origin $BRANCH && git checkout FETCH_HEAD) && \
pip install \
-chttps://git.opnfv.org/functest/plain/upper-constraints.txt?h=$OPNFV_TAG \
-chttps://git.openstack.org/cgit/openstack/requirements/plain/upper-constraints.txt?h=$OPENSTACK_TAG \
diff --git a/docker/healthcheck/Dockerfile b/docker/healthcheck/Dockerfile
index e47068c4..fe13d6e6 100644
--- a/docker/healthcheck/Dockerfile
+++ b/docker/healthcheck/Dockerfile
@@ -1,14 +1,15 @@
FROM opnfv/functest-kubernetes-core
-ARG K8S_TAG=v1.9.4
+ARG K8S_TAG=v1.11.2
-RUN apk --no-cache add --update make py-pip bash git go \
+RUN apk --no-cache add --update make py-pip bash git \
grep rsync linux-headers musl-dev findutils \
libffi libssl1.0 libjpeg-turbo && \
+ apk --no-cache add 'go>1.10.2' --repository http://dl-cdn.alpinelinux.org/alpine/edge/community && \
apk --no-cache add --virtual .build-deps --update \
python-dev libffi-dev openssl-dev libjpeg-turbo-dev && \
git clone --depth 1 https://github.com/kubernetes/kubernetes /src/k8s.io/kubernetes && \
- (cd /src/k8s.io/kubernetes && git fetch --tags origin $K8S_TAG && git checkout FETCH_HEAD && \
+ (cd /src/k8s.io/kubernetes && git fetch --depth 1 --tags origin $K8S_TAG && git checkout FETCH_HEAD && \
# Replace the amd64 with arm64 when building e2e.test on arm platform.
if [ "$(uname -m)" = "aarch64" ]; then sed -i "s/amd64/arm64/g" ./test/images/clusterapi-tester/pod.yaml ; fi && \
make kubectl ginkgo && \