Added support for IBM z Systems architecture (s390x)

This commit is contained in:
gajju26
2015-11-02 15:59:24 +05:30
parent 809f4e1bc3
commit 94093d9cbc
4 changed files with 16 additions and 5 deletions

View File

@@ -150,8 +150,11 @@ kube::util::host_platform() {
i?86*)
host_arch=x86
;;
*)
kube::log::error "Unsupported host arch. Must be x86_64, 386 or arm."
s390x*)
host_arch=s390x
;;
*)
kube::log::error "Unsupported host arch. Must be x86_64, 386, arm or s390x."
exit 1
;;
esac