Merge pull request #67330 from lubinsz/master

Automatic merge from submit-queue (batch tested with PRs 66780, 67330). If you want to cherry-pick this change to another branch, please follow the instructions <a href="https://github.com/kubernetes/community/blob/master/contributors/devel/cherry-picks.md">here</a>.

fix a minor mistake to enable  e2e test on Arm64

Signed-off-by: Bin Lu <bin.lu@arm.com>

What this PR does / why we need it:
fix some minor mistakes in e2e

Which issue(s) this PR fixes (optional, in fixes #<issue number>(, fixes #<issue_number>, ...) format, will close the issue(s) when PR gets merged):
Fixes #

Special notes for your reviewer:

Release note:

NONE
This commit is contained in:
Kubernetes Submit Queue 2018-08-14 12:22:04 -07:00 committed by GitHub
commit d0439d417b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -47,6 +47,9 @@ case "$(uname -m)" in
arm*)
host_arch=arm
;;
aarch64*)
host_arch=arm64
;;
i?86*)
host_arch=386
;;