2014-06-06 23:40:48 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
# Copyright 2014 Google Inc. All rights reserved.
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
|
|
|
|
# Starts a Kubernetes cluster, verifies it can do basic things, and shuts it
|
|
|
|
# down.
|
|
|
|
|
|
|
|
# Exit on error
|
|
|
|
set -e
|
|
|
|
|
|
|
|
# Use testing config
|
|
|
|
export KUBE_CONFIG_FILE="config-test.sh"
|
2014-06-07 04:38:37 +00:00
|
|
|
source $(dirname $0)/../cluster/util.sh
|
2014-06-06 23:40:48 +00:00
|
|
|
|
|
|
|
# Build a release
|
|
|
|
$(dirname $0)/../release/release.sh
|
|
|
|
|
|
|
|
# Now bring a test cluster up with that release.
|
2014-06-07 04:38:37 +00:00
|
|
|
$(dirname $0)/../cluster/kube-up.sh
|
2014-06-06 23:40:48 +00:00
|
|
|
|
|
|
|
# Auto shutdown cluster when we exit
|
|
|
|
function shutdown-test-cluster () {
|
|
|
|
echo "Shutting down test cluster in background."
|
2014-06-12 22:39:19 +00:00
|
|
|
gcutil deletefirewall \
|
|
|
|
--project ${PROJECT} \
|
|
|
|
--norespect_terminal_width \
|
|
|
|
--force \
|
|
|
|
${MINION_TAG}-http-alt &
|
2014-06-07 04:38:37 +00:00
|
|
|
$(dirname $0)/../cluster/kube-down.sh > /dev/null &
|
2014-06-06 23:40:48 +00:00
|
|
|
}
|
|
|
|
trap shutdown-test-cluster EXIT
|
|
|
|
|
2014-06-11 22:56:29 +00:00
|
|
|
# Detect the project into $PROJECT if it isn't set
|
|
|
|
detect-project
|
|
|
|
|
|
|
|
# Open up port 8080 so nginx containers on minions can be reached
|
2014-06-12 22:39:19 +00:00
|
|
|
gcutil addfirewall \
|
|
|
|
--norespect_terminal_width \
|
2014-06-11 22:56:29 +00:00
|
|
|
--project ${PROJECT} \
|
2014-06-12 22:39:19 +00:00
|
|
|
--target_tags ${MINION_TAG} \
|
|
|
|
--allowed tcp:8080 \
|
|
|
|
--network ${NETWORK} \
|
|
|
|
${MINION_TAG}-http-alt &
|
2014-06-11 22:56:29 +00:00
|
|
|
|
2014-06-06 23:40:48 +00:00
|
|
|
# Launch a container
|
2014-06-07 04:38:37 +00:00
|
|
|
$(dirname $0)/../cluster/cloudcfg.sh -p 8080:80 run dockerfile/nginx 2 myNginx
|
2014-06-06 23:40:48 +00:00
|
|
|
|
2014-06-08 05:04:34 +00:00
|
|
|
# Container turn up on a clean cluster can take a while for the docker image pull.
|
|
|
|
# Sleep for 2 minutes just to be sure.
|
|
|
|
echo "Waiting for containers to come up."
|
|
|
|
sleep 120
|
|
|
|
|
2014-06-06 23:40:48 +00:00
|
|
|
# Get minion IP addresses
|
|
|
|
detect-minions
|
|
|
|
|
|
|
|
# Verify that something is listening (nginx should give us a 404)
|
|
|
|
for (( i=0; i<${#KUBE_MINION_IP_ADDRESSES[@]}; i++)); do
|
|
|
|
IP_ADDRESS=${KUBE_MINION_IP_ADDRESSES[$i]}
|
|
|
|
echo "Trying to reach nginx instance that should be running at ${IP_ADDRESS}:8080..."
|
|
|
|
curl "http://${IP_ADDRESS}:8080"
|
|
|
|
done
|
|
|
|
|