Commit ba959446 authored by k8s-merge-robot's avatar k8s-merge-robot

Merge pull request #25985 from elsonrodriguez/openstack-provider-heatfix

Automatic merge from submit-queue Updating CentOS image, adding heat back to the required cli tools. [![Analytics](https://kubernetes-site.appspot.com/UA-36037335-10/GitHub/.github/PULL_REQUEST_TEMPLATE.md?pixel)]() Updated the CentOS cloudimage to the latest available, and also added heat to the required list of cli tools. This is an interim step to replacing all the commands with openstackclient.
parents 12f7b814 c65e5c2b
...@@ -20,7 +20,7 @@ ...@@ -20,7 +20,7 @@
OPENSTACK_IMAGE_NAME=${OPENSTACK_IMAGE_NAME:-CentOS7} OPENSTACK_IMAGE_NAME=${OPENSTACK_IMAGE_NAME:-CentOS7}
# Downloaded image name for Openstack project # Downloaded image name for Openstack project
IMAGE_FILE=${IMAGE_FILE:-CentOS-7-x86_64-GenericCloud-1510.qcow2} IMAGE_FILE=${IMAGE_FILE:-CentOS-7-x86_64-GenericCloud-1604.qcow2}
# Absolute path where image file is stored. # Absolute path where image file is stored.
IMAGE_PATH=${IMAGE_PATH:-~/Downloads/openstack} IMAGE_PATH=${IMAGE_PATH:-~/Downloads/openstack}
......
...@@ -32,7 +32,7 @@ fi ...@@ -32,7 +32,7 @@ fi
# Verify prereqs on host machine # Verify prereqs on host machine
function verify-prereqs() { function verify-prereqs() {
# Check the OpenStack command-line clients # Check the OpenStack command-line clients
for client in swift glance nova openstack; for client in swift glance nova heat openstack;
do do
if which $client >/dev/null 2>&1; then if which $client >/dev/null 2>&1; then
echo "${client} client installed" echo "${client} client installed"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment