Fix issue of error image when running healthcheck case on arm platform 49/61249/3
authorJingzhao Ni <jingzhao.ni@arm.com>
Wed, 22 Aug 2018 13:57:36 +0000 (21:57 +0800)
committerJingzhao Ni <jingzhao.ni@arm.com>
Fri, 24 Aug 2018 03:27:38 +0000 (11:27 +0800)
Replace the "amd64" with "arm64" in the pod.yaml when building
the healthcheck images.

Change-Id: I58b2d91ce1c74575becb77eee4c711623becd0fe
Signed-off-by: Jingzhao Ni <jingzhao.ni@arm.com>
docker/healthcheck/Dockerfile

index ce3f82b..cd18eaf 100644 (file)
@@ -9,6 +9,8 @@ RUN apk --no-cache add --update make py-pip bash git go \
         python-dev libffi-dev openssl-dev libjpeg-turbo-dev && \
     git clone https://github.com/kubernetes/kubernetes /src/k8s.io/kubernetes && \
     (cd /src/k8s.io/kubernetes && git checkout $K8S_TAG && \
+        # 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 && \
         make WHAT=test/e2e/e2e.test && \
         mv _output/bin/kubectl /usr/local/bin) && \