GCE: enable downloading and staging of the node binaries

Currently, only kubernetes-server-linux-<arch>.tar.gz will be downloaded
and staged for tests. It is not possible to test a cluster where the
platform/arch of the nodes differs from that of the master
control-plane. This changes allows downloading and staging node
binaries, in addition to the existing server binaries.
This commit is contained in:
Yu-Ju Hong
2018-12-10 15:07:02 -08:00
parent 67bc6d2083
commit f87fcf6ce8
3 changed files with 51 additions and 4 deletions

View File

@@ -37,6 +37,17 @@
# * arm
# * arm64
#
# Set KUBERNETES_NODE_PLATFORM to choose the platform for which to download
# the node binaries. If not set (the default) no node binaries will be
# downloaded. The options are:
# * linux
# * windows
#
# Set KUBERNETES_NODE_ARCH to choose the node architecture to download:
# * amd64 [default]
# * arm
# * arm64
#
# Set KUBERNETES_SKIP_DOWNLOAD to skip downloading a release.
# Set KUBERNETES_SKIP_CONFIRM to skip the installation confirmation prompt.
# Set KUBERNETES_SKIP_CREATE_CLUSTER to skip starting a cluster.