2014-07-14 17:50:04 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
2015-05-01 16:19:44 +00:00
|
|
|
# Copyright 2014 The Kubernetes Authors All rights reserved.
|
2014-07-14 17:50:04 +00:00
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
|
|
|
|
# A library of helper functions and constant for the local config.
|
|
|
|
|
|
|
|
# Use the config file specified in $KUBE_CONFIG_FILE, or default to
|
|
|
|
# config-default.sh.
|
2014-10-03 21:58:49 +00:00
|
|
|
KUBE_ROOT=$(dirname "${BASH_SOURCE}")/../..
|
|
|
|
source "${KUBE_ROOT}/cluster/gce/${KUBE_CONFIG_FILE-"config-default.sh"}"
|
2015-03-06 22:49:25 +00:00
|
|
|
source "${KUBE_ROOT}/cluster/common.sh"
|
2016-01-11 23:23:21 +00:00
|
|
|
source "${KUBE_ROOT}/cluster/lib/util.sh"
|
2014-07-14 17:50:04 +00:00
|
|
|
|
2015-08-10 23:59:00 +00:00
|
|
|
if [[ "${OS_DISTRIBUTION}" == "debian" || "${OS_DISTRIBUTION}" == "coreos" || "${OS_DISTRIBUTION}" == "trusty" ]]; then
|
2015-04-28 08:22:25 +00:00
|
|
|
source "${KUBE_ROOT}/cluster/gce/${OS_DISTRIBUTION}/helper.sh"
|
2015-04-28 15:50:43 +00:00
|
|
|
else
|
2015-05-08 22:53:09 +00:00
|
|
|
echo "Cannot operate on cluster using os distro: ${OS_DISTRIBUTION}" >&2
|
|
|
|
exit 1
|
2015-04-28 08:22:25 +00:00
|
|
|
fi
|
|
|
|
|
2015-01-28 14:57:10 +00:00
|
|
|
NODE_INSTANCE_PREFIX="${INSTANCE_PREFIX}-minion"
|
|
|
|
|
2015-04-28 15:02:45 +00:00
|
|
|
ALLOCATE_NODE_CIDRS=true
|
|
|
|
|
2015-03-27 20:53:26 +00:00
|
|
|
KUBE_PROMPT_FOR_UPDATE=y
|
2015-04-21 23:11:15 +00:00
|
|
|
KUBE_SKIP_UPDATE=${KUBE_SKIP_UPDATE-"n"}
|
2015-10-07 01:51:27 +00:00
|
|
|
# How long (in seconds) to wait for cluster initialization.
|
|
|
|
KUBE_CLUSTER_INITIALIZATION_TIMEOUT=${KUBE_CLUSTER_INITIALIZATION_TIMEOUT:-300}
|
2015-03-27 20:53:26 +00:00
|
|
|
|
2015-05-23 04:07:09 +00:00
|
|
|
function join_csv {
|
|
|
|
local IFS=','; echo "$*";
|
|
|
|
}
|
|
|
|
|
2014-09-23 22:54:27 +00:00
|
|
|
# Verify prereqs
|
|
|
|
function verify-prereqs {
|
2014-10-06 20:25:27 +00:00
|
|
|
local cmd
|
2014-11-25 18:32:27 +00:00
|
|
|
for cmd in gcloud gsutil; do
|
2015-03-27 20:46:28 +00:00
|
|
|
if ! which "${cmd}" >/dev/null; then
|
|
|
|
local resp
|
2015-03-31 21:03:18 +00:00
|
|
|
if [[ "${KUBE_PROMPT_FOR_UPDATE}" == "y" ]]; then
|
2015-03-30 17:20:29 +00:00
|
|
|
echo "Can't find ${cmd} in PATH. Do you wish to install the Google Cloud SDK? [Y/n]"
|
|
|
|
read resp
|
|
|
|
else
|
|
|
|
resp="y"
|
|
|
|
fi
|
2015-03-27 20:46:28 +00:00
|
|
|
if [[ "${resp}" != "n" && "${resp}" != "N" ]]; then
|
|
|
|
curl https://sdk.cloud.google.com | bash
|
|
|
|
fi
|
|
|
|
if ! which "${cmd}" >/dev/null; then
|
2015-10-07 18:19:32 +00:00
|
|
|
echo "Can't find ${cmd} in PATH, please fix and retry. The Google Cloud " >&2
|
|
|
|
echo "SDK can be downloaded from https://cloud.google.com/sdk/." >&2
|
2015-03-27 20:46:28 +00:00
|
|
|
exit 1
|
|
|
|
fi
|
2015-04-02 00:23:00 +00:00
|
|
|
fi
|
2014-09-23 22:54:27 +00:00
|
|
|
done
|
2015-04-22 17:11:08 +00:00
|
|
|
if [[ "${KUBE_SKIP_UPDATE}" == "y" ]]; then
|
2015-04-21 23:11:15 +00:00
|
|
|
return
|
|
|
|
fi
|
2015-03-27 20:46:28 +00:00
|
|
|
# update and install components as needed
|
2015-03-27 20:53:26 +00:00
|
|
|
if [[ "${KUBE_PROMPT_FOR_UPDATE}" != "y" ]]; then
|
|
|
|
gcloud_prompt="-q"
|
|
|
|
fi
|
2015-04-22 17:19:46 +00:00
|
|
|
local sudo_prefix=""
|
2015-04-21 23:11:15 +00:00
|
|
|
if [ ! -w $(dirname `which gcloud`) ]; then
|
|
|
|
sudo_prefix="sudo"
|
|
|
|
fi
|
2015-12-08 19:26:04 +00:00
|
|
|
${sudo_prefix} gcloud ${gcloud_prompt:-} components install alpha || true
|
|
|
|
${sudo_prefix} gcloud ${gcloud_prompt:-} components install beta || true
|
2015-04-21 23:11:15 +00:00
|
|
|
${sudo_prefix} gcloud ${gcloud_prompt:-} components update || true
|
2014-09-23 22:54:27 +00:00
|
|
|
}
|
|
|
|
|
2014-10-06 20:25:27 +00:00
|
|
|
# Create a temp dir that'll be deleted at the end of this bash session.
|
|
|
|
#
|
|
|
|
# Vars set:
|
|
|
|
# KUBE_TEMP
|
|
|
|
function ensure-temp-dir {
|
|
|
|
if [[ -z ${KUBE_TEMP-} ]]; then
|
|
|
|
KUBE_TEMP=$(mktemp -d -t kubernetes.XXXXXX)
|
|
|
|
trap 'rm -rf "${KUBE_TEMP}"' EXIT
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2014-07-14 17:50:04 +00:00
|
|
|
# Use the gcloud defaults to find the project. If it is already set in the
|
|
|
|
# environment then go with that.
|
2014-09-23 22:54:27 +00:00
|
|
|
#
|
|
|
|
# Vars set:
|
|
|
|
# PROJECT
|
2015-01-15 19:21:42 +00:00
|
|
|
# PROJECT_REPORTED
|
2014-07-14 17:50:04 +00:00
|
|
|
function detect-project () {
|
2014-10-06 20:25:27 +00:00
|
|
|
if [[ -z "${PROJECT-}" ]]; then
|
2014-07-14 17:50:04 +00:00
|
|
|
PROJECT=$(gcloud config list project | tail -n 1 | cut -f 3 -d ' ')
|
|
|
|
fi
|
|
|
|
|
2014-10-06 20:25:27 +00:00
|
|
|
if [[ -z "${PROJECT-}" ]]; then
|
|
|
|
echo "Could not detect Google Cloud Platform project. Set the default project using " >&2
|
|
|
|
echo "'gcloud config set project <PROJECT>'" >&2
|
2014-07-14 17:50:04 +00:00
|
|
|
exit 1
|
|
|
|
fi
|
2015-01-15 19:21:42 +00:00
|
|
|
if [[ -z "${PROJECT_REPORTED-}" ]]; then
|
|
|
|
echo "Project: ${PROJECT}" >&2
|
|
|
|
echo "Zone: ${ZONE}" >&2
|
|
|
|
PROJECT_REPORTED=true
|
|
|
|
fi
|
2014-07-14 17:50:04 +00:00
|
|
|
}
|
|
|
|
|
2015-05-01 17:50:18 +00:00
|
|
|
function already-staged() {
|
|
|
|
local -r file=$1
|
|
|
|
local -r newsum=$2
|
|
|
|
|
2015-05-28 03:33:29 +00:00
|
|
|
[[ -e "${file}.uploaded.sha1" ]] || return 1
|
2015-05-01 17:50:18 +00:00
|
|
|
|
|
|
|
local oldsum
|
2015-05-28 03:33:29 +00:00
|
|
|
oldsum=$(cat "${file}.uploaded.sha1")
|
2015-05-01 17:50:18 +00:00
|
|
|
|
|
|
|
[[ "${oldsum}" == "${newsum}" ]]
|
|
|
|
}
|
|
|
|
|
|
|
|
# Copy a release tar, if we don't already think it's staged in GCS
|
|
|
|
function copy-if-not-staged() {
|
|
|
|
local -r staging_path=$1
|
|
|
|
local -r gs_url=$2
|
|
|
|
local -r tar=$3
|
|
|
|
local -r hash=$4
|
|
|
|
|
|
|
|
if already-staged "${tar}" "${hash}"; then
|
2015-08-26 15:10:51 +00:00
|
|
|
echo "+++ $(basename ${tar}) already staged ('rm ${tar}.uploaded.sha1' to force)"
|
2015-05-01 17:50:18 +00:00
|
|
|
else
|
2015-06-18 18:31:21 +00:00
|
|
|
echo "${hash}" > "${tar}.sha1"
|
2015-05-01 17:50:18 +00:00
|
|
|
gsutil -m -q -h "Cache-Control:private, max-age=0" cp "${tar}" "${tar}.sha1" "${staging_path}"
|
|
|
|
gsutil -m acl ch -g all:R "${gs_url}" "${gs_url}.sha1" >/dev/null 2>&1
|
2015-06-18 18:31:21 +00:00
|
|
|
echo "${hash}" > "${tar}.uploaded.sha1"
|
|
|
|
echo "+++ $(basename ${tar}) uploaded (sha1 = ${hash})"
|
2015-05-01 17:50:18 +00:00
|
|
|
fi
|
|
|
|
}
|
2014-12-09 23:37:06 +00:00
|
|
|
|
2014-09-23 22:54:27 +00:00
|
|
|
# Take the local tar files and upload them to Google Storage. They will then be
|
|
|
|
# downloaded by the master as part of the start up script for the master.
|
2015-12-02 19:42:23 +00:00
|
|
|
# If running on Ubuntu trusty, we also pack the dir cluster/gce/trusty/kube-manifest
|
|
|
|
# and upload it to Google Storage.
|
2014-09-23 22:54:27 +00:00
|
|
|
#
|
|
|
|
# Assumed vars:
|
|
|
|
# PROJECT
|
|
|
|
# SERVER_BINARY_TAR
|
|
|
|
# SALT_TAR
|
2015-12-08 22:32:23 +00:00
|
|
|
# KUBE_MANIFESTS_TAR
|
2014-09-23 22:54:27 +00:00
|
|
|
# Vars set:
|
|
|
|
# SERVER_BINARY_TAR_URL
|
2015-06-18 18:31:21 +00:00
|
|
|
# SERVER_BINARY_TAR_HASH
|
2014-09-23 22:54:27 +00:00
|
|
|
# SALT_TAR_URL
|
2015-06-18 18:31:21 +00:00
|
|
|
# SALT_TAR_HASH
|
2015-12-08 22:32:23 +00:00
|
|
|
# KUBE_MANIFESTS_TAR_URL
|
|
|
|
# KUBE_MANIFESTS_TAR_HASH
|
2014-09-23 22:54:27 +00:00
|
|
|
function upload-server-tars() {
|
|
|
|
SERVER_BINARY_TAR_URL=
|
2015-06-18 18:31:21 +00:00
|
|
|
SERVER_BINARY_TAR_HASH=
|
2014-09-23 22:54:27 +00:00
|
|
|
SALT_TAR_URL=
|
2015-06-18 18:31:21 +00:00
|
|
|
SALT_TAR_HASH=
|
2015-12-08 22:32:23 +00:00
|
|
|
KUBE_MANIFESTS_TAR_URL=
|
|
|
|
KUBE_MANIFESTS_TAR_HASH=
|
2014-09-23 22:54:27 +00:00
|
|
|
|
|
|
|
local project_hash
|
|
|
|
if which md5 > /dev/null 2>&1; then
|
|
|
|
project_hash=$(md5 -q -s "$PROJECT")
|
|
|
|
else
|
2014-11-12 07:04:01 +00:00
|
|
|
project_hash=$(echo -n "$PROJECT" | md5sum | awk '{ print $1 }')
|
2014-09-23 22:54:27 +00:00
|
|
|
fi
|
2015-05-01 17:50:18 +00:00
|
|
|
|
2015-04-09 04:51:50 +00:00
|
|
|
# This requires 1 million projects before the probability of collision is 50%
|
|
|
|
# that's probably good enough for now :P
|
|
|
|
project_hash=${project_hash:0:10}
|
2014-09-23 22:54:27 +00:00
|
|
|
|
|
|
|
local -r staging_bucket="gs://kubernetes-staging-${project_hash}"
|
|
|
|
|
|
|
|
# Ensure the bucket is created
|
|
|
|
if ! gsutil ls "$staging_bucket" > /dev/null 2>&1 ; then
|
|
|
|
echo "Creating $staging_bucket"
|
|
|
|
gsutil mb "${staging_bucket}"
|
|
|
|
fi
|
|
|
|
|
2016-01-22 23:27:33 +00:00
|
|
|
local -r staging_path="${staging_bucket}/${INSTANCE_PREFIX}-devel"
|
2014-09-23 22:54:27 +00:00
|
|
|
|
2015-06-18 18:31:21 +00:00
|
|
|
SERVER_BINARY_TAR_HASH=$(sha1sum-file "${SERVER_BINARY_TAR}")
|
|
|
|
SALT_TAR_HASH=$(sha1sum-file "${SALT_TAR}")
|
2015-05-01 17:50:18 +00:00
|
|
|
|
2014-09-23 22:54:27 +00:00
|
|
|
echo "+++ Staging server tars to Google Storage: ${staging_path}"
|
2014-11-08 00:16:45 +00:00
|
|
|
local server_binary_gs_url="${staging_path}/${SERVER_BINARY_TAR##*/}"
|
|
|
|
local salt_gs_url="${staging_path}/${SALT_TAR##*/}"
|
2015-06-18 18:31:21 +00:00
|
|
|
copy-if-not-staged "${staging_path}" "${server_binary_gs_url}" "${SERVER_BINARY_TAR}" "${SERVER_BINARY_TAR_HASH}"
|
|
|
|
copy-if-not-staged "${staging_path}" "${salt_gs_url}" "${SALT_TAR}" "${SALT_TAR_HASH}"
|
2014-11-08 00:16:45 +00:00
|
|
|
|
|
|
|
# Convert from gs:// URL to an https:// URL
|
|
|
|
SERVER_BINARY_TAR_URL="${server_binary_gs_url/gs:\/\//https://storage.googleapis.com/}"
|
|
|
|
SALT_TAR_URL="${salt_gs_url/gs:\/\//https://storage.googleapis.com/}"
|
2015-12-02 19:42:23 +00:00
|
|
|
|
2015-11-13 22:21:48 +00:00
|
|
|
if [[ "${OS_DISTRIBUTION}" == "trusty" || "${OS_DISTRIBUTION}" == "coreos" ]]; then
|
2015-12-08 22:32:23 +00:00
|
|
|
local kube_manifests_gs_url="${staging_path}/${KUBE_MANIFESTS_TAR##*/}"
|
|
|
|
KUBE_MANIFESTS_TAR_HASH=$(sha1sum-file "${KUBE_MANIFESTS_TAR}")
|
|
|
|
copy-if-not-staged "${staging_path}" "${kube_manifests_gs_url}" "${KUBE_MANIFESTS_TAR}" "${KUBE_MANIFESTS_TAR_HASH}"
|
|
|
|
# Convert from gs:// URL to an https:// URL
|
|
|
|
KUBE_MANIFESTS_TAR_URL="${kube_manifests_gs_url/gs:\/\//https://storage.googleapis.com/}"
|
|
|
|
fi
|
2014-09-23 22:54:27 +00:00
|
|
|
}
|
|
|
|
|
2015-01-28 14:57:10 +00:00
|
|
|
# Detect minions created in the minion group
|
2014-09-23 22:54:27 +00:00
|
|
|
#
|
|
|
|
# Assumed vars:
|
2015-01-28 14:57:10 +00:00
|
|
|
# NODE_INSTANCE_PREFIX
|
|
|
|
# Vars set:
|
2015-11-24 03:04:40 +00:00
|
|
|
# NODE_NAMES
|
2015-12-11 08:09:09 +00:00
|
|
|
# INSTANCE_GROUPS
|
2015-11-09 07:33:06 +00:00
|
|
|
function detect-node-names {
|
2015-01-28 14:57:10 +00:00
|
|
|
detect-project
|
2015-12-11 08:09:09 +00:00
|
|
|
INSTANCE_GROUPS=()
|
2015-12-18 10:12:07 +00:00
|
|
|
INSTANCE_GROUPS+=($(gcloud compute instance-groups managed list --zone "${ZONE}" --project "${PROJECT}" | grep ${NODE_INSTANCE_PREFIX} | cut -f1 -d" " || true))
|
2015-12-11 08:09:09 +00:00
|
|
|
NODE_NAMES=()
|
|
|
|
if [[ -n "${INSTANCE_GROUPS[@]:-}" ]]; then
|
|
|
|
for group in "${INSTANCE_GROUPS[@]}"; do
|
|
|
|
NODE_NAMES+=($(gcloud compute instance-groups managed list-instances \
|
|
|
|
"${group}" --zone "${ZONE}" --project "${PROJECT}" \
|
|
|
|
--format=yaml | grep instance: | cut -d ' ' -f 2))
|
|
|
|
done
|
|
|
|
echo "INSTANCE_GROUPS=${INSTANCE_GROUPS[*]}" >&2
|
|
|
|
echo "NODE_NAMES=${NODE_NAMES[*]}" >&2
|
|
|
|
else
|
|
|
|
echo "INSTANCE_GROUPS=" >&2
|
|
|
|
echo "NODE_NAMES=" >&2
|
|
|
|
fi
|
2015-01-28 14:57:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
# Detect the information about the minions
|
|
|
|
#
|
|
|
|
# Assumed vars:
|
2014-09-23 22:54:27 +00:00
|
|
|
# ZONE
|
|
|
|
# Vars set:
|
2015-11-24 03:04:40 +00:00
|
|
|
# NODE_NAMES
|
2015-11-24 03:00:46 +00:00
|
|
|
# KUBE_NODE_IP_ADDRESSES (array)
|
2015-11-09 07:33:06 +00:00
|
|
|
function detect-nodes () {
|
2014-12-09 23:07:54 +00:00
|
|
|
detect-project
|
2015-11-09 07:33:06 +00:00
|
|
|
detect-node-names
|
2015-11-24 03:00:46 +00:00
|
|
|
KUBE_NODE_IP_ADDRESSES=()
|
2015-11-24 03:04:40 +00:00
|
|
|
for (( i=0; i<${#NODE_NAMES[@]}; i++)); do
|
2015-12-11 08:09:09 +00:00
|
|
|
local node_ip=$(gcloud compute instances describe --project "${PROJECT}" --zone "${ZONE}" \
|
2015-11-24 03:04:40 +00:00
|
|
|
"${NODE_NAMES[$i]}" --fields networkInterfaces[0].accessConfigs[0].natIP \
|
2014-11-25 18:32:27 +00:00
|
|
|
--format=text | awk '{ print $2 }')
|
2015-12-11 08:09:09 +00:00
|
|
|
if [[ -z "${node_ip-}" ]] ; then
|
2015-11-24 03:04:40 +00:00
|
|
|
echo "Did not find ${NODE_NAMES[$i]}" >&2
|
2014-09-22 17:25:25 +00:00
|
|
|
else
|
2015-11-24 03:04:40 +00:00
|
|
|
echo "Found ${NODE_NAMES[$i]} at ${minion_ip}"
|
2015-11-24 03:00:46 +00:00
|
|
|
KUBE_NODE_IP_ADDRESSES+=("${minion_ip}")
|
2014-09-22 17:25:25 +00:00
|
|
|
fi
|
2014-07-14 17:50:04 +00:00
|
|
|
done
|
2015-11-24 03:00:46 +00:00
|
|
|
if [[ -z "${KUBE_NODE_IP_ADDRESSES-}" ]]; then
|
2014-10-06 20:25:27 +00:00
|
|
|
echo "Could not detect Kubernetes minion nodes. Make sure you've launched a cluster with 'kube-up.sh'" >&2
|
2014-07-14 17:50:04 +00:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2014-09-23 22:54:27 +00:00
|
|
|
# Detect the IP for the master
|
|
|
|
#
|
|
|
|
# Assumed vars:
|
|
|
|
# MASTER_NAME
|
|
|
|
# ZONE
|
|
|
|
# Vars set:
|
|
|
|
# KUBE_MASTER
|
|
|
|
# KUBE_MASTER_IP
|
2014-07-14 17:50:04 +00:00
|
|
|
function detect-master () {
|
2014-12-09 23:07:54 +00:00
|
|
|
detect-project
|
2014-07-14 17:50:04 +00:00
|
|
|
KUBE_MASTER=${MASTER_NAME}
|
2014-10-06 20:25:27 +00:00
|
|
|
if [[ -z "${KUBE_MASTER_IP-}" ]]; then
|
2014-12-03 05:14:18 +00:00
|
|
|
KUBE_MASTER_IP=$(gcloud compute instances describe --project "${PROJECT}" --zone "${ZONE}" \
|
2014-11-25 18:32:27 +00:00
|
|
|
"${MASTER_NAME}" --fields networkInterfaces[0].accessConfigs[0].natIP \
|
|
|
|
--format=text | awk '{ print $2 }')
|
2014-07-14 17:50:04 +00:00
|
|
|
fi
|
2014-10-06 20:25:27 +00:00
|
|
|
if [[ -z "${KUBE_MASTER_IP-}" ]]; then
|
|
|
|
echo "Could not detect Kubernetes master node. Make sure you've launched a cluster with 'kube-up.sh'" >&2
|
2014-07-14 17:50:04 +00:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
echo "Using master: $KUBE_MASTER (external IP: $KUBE_MASTER_IP)"
|
|
|
|
}
|
|
|
|
|
2015-10-07 20:48:28 +00:00
|
|
|
# Robustly try to create a static ip.
|
|
|
|
# $1: The name of the ip to create
|
|
|
|
# $2: The name of the region to create the ip in.
|
|
|
|
function create-static-ip {
|
|
|
|
detect-project
|
|
|
|
local attempt=0
|
|
|
|
local REGION="$2"
|
|
|
|
while true; do
|
|
|
|
if ! gcloud compute addresses create "$1" \
|
|
|
|
--project "${PROJECT}" \
|
|
|
|
--region "${REGION}" -q > /dev/null; then
|
|
|
|
if (( attempt > 4 )); then
|
|
|
|
echo -e "${color_red}Failed to create static ip $1 ${color_norm}" >&2
|
|
|
|
exit 2
|
|
|
|
fi
|
|
|
|
attempt=$(($attempt+1))
|
|
|
|
echo -e "${color_yellow}Attempt $attempt failed to create static ip $1. Retrying.${color_norm}" >&2
|
|
|
|
sleep $(($attempt * 5))
|
|
|
|
else
|
|
|
|
break
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
2014-12-09 23:37:06 +00:00
|
|
|
# Robustly try to create a firewall rule.
|
|
|
|
# $1: The name of firewall rule.
|
|
|
|
# $2: IP ranges.
|
2014-12-16 18:22:29 +00:00
|
|
|
# $3: Target tags for this firewall rule.
|
2014-12-09 23:37:06 +00:00
|
|
|
function create-firewall-rule {
|
2014-12-09 23:07:54 +00:00
|
|
|
detect-project
|
2014-12-09 23:37:06 +00:00
|
|
|
local attempt=0
|
|
|
|
while true; do
|
|
|
|
if ! gcloud compute firewall-rules create "$1" \
|
|
|
|
--project "${PROJECT}" \
|
|
|
|
--network "${NETWORK}" \
|
|
|
|
--source-ranges "$2" \
|
2014-12-16 18:22:29 +00:00
|
|
|
--target-tags "$3" \
|
2015-05-23 04:07:09 +00:00
|
|
|
--allow tcp,udp,icmp,esp,ah,sctp; then
|
2015-10-07 20:48:28 +00:00
|
|
|
if (( attempt > 4 )); then
|
|
|
|
echo -e "${color_red}Failed to create firewall rule $1 ${color_norm}" >&2
|
|
|
|
exit 2
|
|
|
|
fi
|
|
|
|
echo -e "${color_yellow}Attempt $(($attempt+1)) failed to create firewall rule $1. Retrying.${color_norm}" >&2
|
|
|
|
attempt=$(($attempt+1))
|
|
|
|
sleep $(($attempt * 5))
|
2014-12-09 23:37:06 +00:00
|
|
|
else
|
2015-01-28 14:57:10 +00:00
|
|
|
break
|
2014-12-09 23:37:06 +00:00
|
|
|
fi
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
2015-09-28 23:22:13 +00:00
|
|
|
# $1: version (required)
|
|
|
|
function get-template-name-from-version {
|
|
|
|
# trim template name to pass gce name validation
|
|
|
|
echo "${NODE_INSTANCE_PREFIX}-template-${1}" | cut -c 1-63 | sed 's/[\.\+]/-/g;s/-*$//g'
|
|
|
|
}
|
|
|
|
|
2015-01-28 14:57:10 +00:00
|
|
|
# Robustly try to create an instance template.
|
|
|
|
# $1: The name of the instance template.
|
2014-12-09 23:37:06 +00:00
|
|
|
# $2: The scopes flag.
|
2015-01-28 14:57:10 +00:00
|
|
|
# $3: The minion start script metadata from file.
|
Change GCE to use standalone Saltstack config:
Change provisioning to pass all variables to both master and node. Run
Salt in a masterless setup on all nodes ala
http://docs.saltstack.com/en/latest/topics/tutorials/quickstart.html,
which involves ensuring Salt daemon is NOT running after install. Kill
Salt master install. And fix push to actually work in this new flow.
As part of this, the GCE Salt config no longer has access to the Salt
mine, which is primarily obnoxious for two reasons: - The minions
can't use Salt to see the master: this is easily fixed by static
config. - The master can't see the list of all the minions: this is
fixed temporarily by static config in util.sh, but later, by other
means (see
https://github.com/GoogleCloudPlatform/kubernetes/issues/156, which
should eventually remove this direction).
As part of it, flatten all of cluster/gce/templates/* into
configure-vm.sh, using a single, separate piece of YAML to drive the
environment variables, rather than constantly rewriting the startup
script.
2015-03-02 22:38:58 +00:00
|
|
|
# $4: The kube-env metadata.
|
2015-11-13 21:03:44 +00:00
|
|
|
# $5 and others: Additional user defined metadata.
|
2015-01-28 14:57:10 +00:00
|
|
|
function create-node-template {
|
2014-12-09 23:07:54 +00:00
|
|
|
detect-project
|
2015-09-28 23:22:13 +00:00
|
|
|
local template_name="$1"
|
2015-05-08 00:41:22 +00:00
|
|
|
|
|
|
|
# First, ensure the template doesn't exist.
|
2015-08-26 17:05:34 +00:00
|
|
|
# TODO(zmerlynn): To make this really robust, we need to parse the output and
|
2015-05-08 00:41:22 +00:00
|
|
|
# add retries. Just relying on a non-zero exit code doesn't
|
|
|
|
# distinguish an ephemeral failed call from a "not-exists".
|
2015-09-28 23:22:13 +00:00
|
|
|
if gcloud compute instance-templates describe "$template_name" --project "${PROJECT}" &>/dev/null; then
|
2015-06-12 03:56:01 +00:00
|
|
|
echo "Instance template ${1} already exists; deleting." >&2
|
2015-09-28 23:22:13 +00:00
|
|
|
if ! gcloud compute instance-templates delete "$template_name" --project "${PROJECT}" &>/dev/null; then
|
2015-06-12 03:56:01 +00:00
|
|
|
echo -e "${color_yellow}Failed to delete existing instance template${color_norm}" >&2
|
|
|
|
exit 2
|
|
|
|
fi
|
2015-05-08 00:41:22 +00:00
|
|
|
fi
|
|
|
|
|
2015-06-17 07:13:26 +00:00
|
|
|
local attempt=1
|
2015-08-07 06:47:10 +00:00
|
|
|
local preemptible_minions=""
|
2015-11-24 03:06:47 +00:00
|
|
|
if [[ "${PREEMPTIBLE_NODE}" == "true" ]]; then
|
2015-08-07 06:47:10 +00:00
|
|
|
preemptible_minions="--preemptible --maintenance-policy TERMINATE"
|
2015-08-08 16:07:12 +00:00
|
|
|
fi
|
2014-12-09 23:37:06 +00:00
|
|
|
while true; do
|
2015-06-17 07:13:26 +00:00
|
|
|
echo "Attempt ${attempt} to create ${1}" >&2
|
2015-09-28 23:22:13 +00:00
|
|
|
if ! gcloud compute instance-templates create "$template_name" \
|
2014-12-09 23:37:06 +00:00
|
|
|
--project "${PROJECT}" \
|
2015-11-24 03:05:51 +00:00
|
|
|
--machine-type "${NODE_SIZE}" \
|
2015-11-24 03:02:38 +00:00
|
|
|
--boot-disk-type "${NODE_DISK_TYPE}" \
|
|
|
|
--boot-disk-size "${NODE_DISK_SIZE}" \
|
|
|
|
--image-project="${NODE_IMAGE_PROJECT}" \
|
|
|
|
--image "${NODE_IMAGE}" \
|
2015-11-24 03:06:00 +00:00
|
|
|
--tags "${NODE_TAG}" \
|
2014-12-09 23:37:06 +00:00
|
|
|
--network "${NETWORK}" \
|
2015-08-08 16:07:12 +00:00
|
|
|
${preemptible_minions} \
|
2014-12-09 23:37:06 +00:00
|
|
|
$2 \
|
|
|
|
--can-ip-forward \
|
2015-11-06 01:14:47 +00:00
|
|
|
--metadata-from-file $(echo ${@:3} | tr ' ' ',') >&2; then
|
2014-12-09 23:37:06 +00:00
|
|
|
if (( attempt > 5 )); then
|
2015-09-28 23:22:13 +00:00
|
|
|
echo -e "${color_red}Failed to create instance template $template_name ${color_norm}" >&2
|
2014-12-09 23:37:06 +00:00
|
|
|
exit 2
|
|
|
|
fi
|
2015-09-28 23:22:13 +00:00
|
|
|
echo -e "${color_yellow}Attempt ${attempt} failed to create instance template $template_name. Retrying.${color_norm}" >&2
|
2014-12-09 23:37:06 +00:00
|
|
|
attempt=$(($attempt+1))
|
2015-10-23 20:57:13 +00:00
|
|
|
sleep $(($attempt * 5))
|
2015-01-28 14:57:10 +00:00
|
|
|
else
|
|
|
|
break
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
|
|
|
# Robustly try to add metadata on an instance.
|
2015-08-08 21:29:57 +00:00
|
|
|
# $1: The name of the instance.
|
2015-04-17 17:58:26 +00:00
|
|
|
# $2...$n: The metadata key=value pairs to add.
|
2015-01-28 14:57:10 +00:00
|
|
|
function add-instance-metadata {
|
2015-04-17 17:58:26 +00:00
|
|
|
local -r instance=$1
|
|
|
|
shift 1
|
|
|
|
local -r kvs=( "$@" )
|
2015-01-28 14:57:10 +00:00
|
|
|
detect-project
|
|
|
|
local attempt=0
|
|
|
|
while true; do
|
2015-04-17 17:58:26 +00:00
|
|
|
if ! gcloud compute instances add-metadata "${instance}" \
|
2015-01-28 14:57:10 +00:00
|
|
|
--project "${PROJECT}" \
|
|
|
|
--zone "${ZONE}" \
|
2015-04-17 17:58:26 +00:00
|
|
|
--metadata "${kvs[@]}"; then
|
2015-01-28 14:57:10 +00:00
|
|
|
if (( attempt > 5 )); then
|
2015-10-07 18:19:32 +00:00
|
|
|
echo -e "${color_red}Failed to add instance metadata in ${instance} ${color_norm}" >&2
|
2015-01-28 14:57:10 +00:00
|
|
|
exit 2
|
|
|
|
fi
|
2015-10-07 18:19:32 +00:00
|
|
|
echo -e "${color_yellow}Attempt $(($attempt+1)) failed to add metadata in ${instance}. Retrying.${color_norm}" >&2
|
2015-01-28 14:57:10 +00:00
|
|
|
attempt=$(($attempt+1))
|
2015-10-23 20:57:13 +00:00
|
|
|
sleep $((5 * $attempt))
|
2015-01-28 14:57:10 +00:00
|
|
|
else
|
|
|
|
break
|
2014-12-09 23:37:06 +00:00
|
|
|
fi
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
Change GCE to use standalone Saltstack config:
Change provisioning to pass all variables to both master and node. Run
Salt in a masterless setup on all nodes ala
http://docs.saltstack.com/en/latest/topics/tutorials/quickstart.html,
which involves ensuring Salt daemon is NOT running after install. Kill
Salt master install. And fix push to actually work in this new flow.
As part of this, the GCE Salt config no longer has access to the Salt
mine, which is primarily obnoxious for two reasons: - The minions
can't use Salt to see the master: this is easily fixed by static
config. - The master can't see the list of all the minions: this is
fixed temporarily by static config in util.sh, but later, by other
means (see
https://github.com/GoogleCloudPlatform/kubernetes/issues/156, which
should eventually remove this direction).
As part of it, flatten all of cluster/gce/templates/* into
configure-vm.sh, using a single, separate piece of YAML to drive the
environment variables, rather than constantly rewriting the startup
script.
2015-03-02 22:38:58 +00:00
|
|
|
# Robustly try to add metadata on an instance, from a file.
|
2015-04-17 17:58:26 +00:00
|
|
|
# $1: The name of the instance.
|
|
|
|
# $2...$n: The metadata key=file pairs to add.
|
Change GCE to use standalone Saltstack config:
Change provisioning to pass all variables to both master and node. Run
Salt in a masterless setup on all nodes ala
http://docs.saltstack.com/en/latest/topics/tutorials/quickstart.html,
which involves ensuring Salt daemon is NOT running after install. Kill
Salt master install. And fix push to actually work in this new flow.
As part of this, the GCE Salt config no longer has access to the Salt
mine, which is primarily obnoxious for two reasons: - The minions
can't use Salt to see the master: this is easily fixed by static
config. - The master can't see the list of all the minions: this is
fixed temporarily by static config in util.sh, but later, by other
means (see
https://github.com/GoogleCloudPlatform/kubernetes/issues/156, which
should eventually remove this direction).
As part of it, flatten all of cluster/gce/templates/* into
configure-vm.sh, using a single, separate piece of YAML to drive the
environment variables, rather than constantly rewriting the startup
script.
2015-03-02 22:38:58 +00:00
|
|
|
function add-instance-metadata-from-file {
|
2015-04-17 17:58:26 +00:00
|
|
|
local -r instance=$1
|
|
|
|
shift 1
|
|
|
|
local -r kvs=( "$@" )
|
Change GCE to use standalone Saltstack config:
Change provisioning to pass all variables to both master and node. Run
Salt in a masterless setup on all nodes ala
http://docs.saltstack.com/en/latest/topics/tutorials/quickstart.html,
which involves ensuring Salt daemon is NOT running after install. Kill
Salt master install. And fix push to actually work in this new flow.
As part of this, the GCE Salt config no longer has access to the Salt
mine, which is primarily obnoxious for two reasons: - The minions
can't use Salt to see the master: this is easily fixed by static
config. - The master can't see the list of all the minions: this is
fixed temporarily by static config in util.sh, but later, by other
means (see
https://github.com/GoogleCloudPlatform/kubernetes/issues/156, which
should eventually remove this direction).
As part of it, flatten all of cluster/gce/templates/* into
configure-vm.sh, using a single, separate piece of YAML to drive the
environment variables, rather than constantly rewriting the startup
script.
2015-03-02 22:38:58 +00:00
|
|
|
detect-project
|
|
|
|
local attempt=0
|
|
|
|
while true; do
|
2015-04-17 17:58:26 +00:00
|
|
|
echo "${kvs[@]}"
|
|
|
|
if ! gcloud compute instances add-metadata "${instance}" \
|
Change GCE to use standalone Saltstack config:
Change provisioning to pass all variables to both master and node. Run
Salt in a masterless setup on all nodes ala
http://docs.saltstack.com/en/latest/topics/tutorials/quickstart.html,
which involves ensuring Salt daemon is NOT running after install. Kill
Salt master install. And fix push to actually work in this new flow.
As part of this, the GCE Salt config no longer has access to the Salt
mine, which is primarily obnoxious for two reasons: - The minions
can't use Salt to see the master: this is easily fixed by static
config. - The master can't see the list of all the minions: this is
fixed temporarily by static config in util.sh, but later, by other
means (see
https://github.com/GoogleCloudPlatform/kubernetes/issues/156, which
should eventually remove this direction).
As part of it, flatten all of cluster/gce/templates/* into
configure-vm.sh, using a single, separate piece of YAML to drive the
environment variables, rather than constantly rewriting the startup
script.
2015-03-02 22:38:58 +00:00
|
|
|
--project "${PROJECT}" \
|
|
|
|
--zone "${ZONE}" \
|
2015-05-23 04:07:09 +00:00
|
|
|
--metadata-from-file "$(join_csv ${kvs[@]})"; then
|
Change GCE to use standalone Saltstack config:
Change provisioning to pass all variables to both master and node. Run
Salt in a masterless setup on all nodes ala
http://docs.saltstack.com/en/latest/topics/tutorials/quickstart.html,
which involves ensuring Salt daemon is NOT running after install. Kill
Salt master install. And fix push to actually work in this new flow.
As part of this, the GCE Salt config no longer has access to the Salt
mine, which is primarily obnoxious for two reasons: - The minions
can't use Salt to see the master: this is easily fixed by static
config. - The master can't see the list of all the minions: this is
fixed temporarily by static config in util.sh, but later, by other
means (see
https://github.com/GoogleCloudPlatform/kubernetes/issues/156, which
should eventually remove this direction).
As part of it, flatten all of cluster/gce/templates/* into
configure-vm.sh, using a single, separate piece of YAML to drive the
environment variables, rather than constantly rewriting the startup
script.
2015-03-02 22:38:58 +00:00
|
|
|
if (( attempt > 5 )); then
|
2015-10-07 18:19:32 +00:00
|
|
|
echo -e "${color_red}Failed to add instance metadata in ${instance} ${color_norm}" >&2
|
Change GCE to use standalone Saltstack config:
Change provisioning to pass all variables to both master and node. Run
Salt in a masterless setup on all nodes ala
http://docs.saltstack.com/en/latest/topics/tutorials/quickstart.html,
which involves ensuring Salt daemon is NOT running after install. Kill
Salt master install. And fix push to actually work in this new flow.
As part of this, the GCE Salt config no longer has access to the Salt
mine, which is primarily obnoxious for two reasons: - The minions
can't use Salt to see the master: this is easily fixed by static
config. - The master can't see the list of all the minions: this is
fixed temporarily by static config in util.sh, but later, by other
means (see
https://github.com/GoogleCloudPlatform/kubernetes/issues/156, which
should eventually remove this direction).
As part of it, flatten all of cluster/gce/templates/* into
configure-vm.sh, using a single, separate piece of YAML to drive the
environment variables, rather than constantly rewriting the startup
script.
2015-03-02 22:38:58 +00:00
|
|
|
exit 2
|
|
|
|
fi
|
2015-10-07 18:19:32 +00:00
|
|
|
echo -e "${color_yellow}Attempt $(($attempt+1)) failed to add metadata in ${instance}. Retrying.${color_norm}" >&2
|
Change GCE to use standalone Saltstack config:
Change provisioning to pass all variables to both master and node. Run
Salt in a masterless setup on all nodes ala
http://docs.saltstack.com/en/latest/topics/tutorials/quickstart.html,
which involves ensuring Salt daemon is NOT running after install. Kill
Salt master install. And fix push to actually work in this new flow.
As part of this, the GCE Salt config no longer has access to the Salt
mine, which is primarily obnoxious for two reasons: - The minions
can't use Salt to see the master: this is easily fixed by static
config. - The master can't see the list of all the minions: this is
fixed temporarily by static config in util.sh, but later, by other
means (see
https://github.com/GoogleCloudPlatform/kubernetes/issues/156, which
should eventually remove this direction).
As part of it, flatten all of cluster/gce/templates/* into
configure-vm.sh, using a single, separate piece of YAML to drive the
environment variables, rather than constantly rewriting the startup
script.
2015-03-02 22:38:58 +00:00
|
|
|
attempt=$(($attempt+1))
|
2015-10-23 20:57:13 +00:00
|
|
|
sleep $(($attempt * 5))
|
Change GCE to use standalone Saltstack config:
Change provisioning to pass all variables to both master and node. Run
Salt in a masterless setup on all nodes ala
http://docs.saltstack.com/en/latest/topics/tutorials/quickstart.html,
which involves ensuring Salt daemon is NOT running after install. Kill
Salt master install. And fix push to actually work in this new flow.
As part of this, the GCE Salt config no longer has access to the Salt
mine, which is primarily obnoxious for two reasons: - The minions
can't use Salt to see the master: this is easily fixed by static
config. - The master can't see the list of all the minions: this is
fixed temporarily by static config in util.sh, but later, by other
means (see
https://github.com/GoogleCloudPlatform/kubernetes/issues/156, which
should eventually remove this direction).
As part of it, flatten all of cluster/gce/templates/* into
configure-vm.sh, using a single, separate piece of YAML to drive the
environment variables, rather than constantly rewriting the startup
script.
2015-03-02 22:38:58 +00:00
|
|
|
else
|
|
|
|
break
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
2014-07-14 17:50:04 +00:00
|
|
|
# Instantiate a kubernetes cluster
|
2014-09-23 22:54:27 +00:00
|
|
|
#
|
|
|
|
# Assumed vars
|
2014-10-03 21:58:49 +00:00
|
|
|
# KUBE_ROOT
|
2014-09-23 22:54:27 +00:00
|
|
|
# <Various vars set in config file>
|
2014-07-14 17:50:04 +00:00
|
|
|
function kube-up {
|
Change GCE to use standalone Saltstack config:
Change provisioning to pass all variables to both master and node. Run
Salt in a masterless setup on all nodes ala
http://docs.saltstack.com/en/latest/topics/tutorials/quickstart.html,
which involves ensuring Salt daemon is NOT running after install. Kill
Salt master install. And fix push to actually work in this new flow.
As part of this, the GCE Salt config no longer has access to the Salt
mine, which is primarily obnoxious for two reasons: - The minions
can't use Salt to see the master: this is easily fixed by static
config. - The master can't see the list of all the minions: this is
fixed temporarily by static config in util.sh, but later, by other
means (see
https://github.com/GoogleCloudPlatform/kubernetes/issues/156, which
should eventually remove this direction).
As part of it, flatten all of cluster/gce/templates/* into
configure-vm.sh, using a single, separate piece of YAML to drive the
environment variables, rather than constantly rewriting the startup
script.
2015-03-02 22:38:58 +00:00
|
|
|
ensure-temp-dir
|
2014-07-14 17:50:04 +00:00
|
|
|
detect-project
|
|
|
|
|
2015-10-26 17:38:53 +00:00
|
|
|
load-or-gen-kube-basicauth
|
|
|
|
load-or-gen-kube-bearertoken
|
Change GCE to use standalone Saltstack config:
Change provisioning to pass all variables to both master and node. Run
Salt in a masterless setup on all nodes ala
http://docs.saltstack.com/en/latest/topics/tutorials/quickstart.html,
which involves ensuring Salt daemon is NOT running after install. Kill
Salt master install. And fix push to actually work in this new flow.
As part of this, the GCE Salt config no longer has access to the Salt
mine, which is primarily obnoxious for two reasons: - The minions
can't use Salt to see the master: this is easily fixed by static
config. - The master can't see the list of all the minions: this is
fixed temporarily by static config in util.sh, but later, by other
means (see
https://github.com/GoogleCloudPlatform/kubernetes/issues/156, which
should eventually remove this direction).
As part of it, flatten all of cluster/gce/templates/* into
configure-vm.sh, using a single, separate piece of YAML to drive the
environment variables, rather than constantly rewriting the startup
script.
2015-03-02 22:38:58 +00:00
|
|
|
|
2014-09-23 22:54:27 +00:00
|
|
|
# Make sure we have the tar files staged on Google Storage
|
|
|
|
find-release-tars
|
|
|
|
upload-server-tars
|
2014-09-24 17:55:58 +00:00
|
|
|
|
2015-11-29 19:38:03 +00:00
|
|
|
if [[ ${KUBE_USE_EXISTING_MASTER:-} == "true" ]]; then
|
|
|
|
create-nodes
|
|
|
|
create-autoscaler
|
|
|
|
else
|
|
|
|
check-existing
|
|
|
|
create-network
|
|
|
|
create-master
|
|
|
|
create-nodes-firewall
|
|
|
|
create-nodes-template
|
|
|
|
create-nodes
|
|
|
|
create-autoscaler
|
|
|
|
check-cluster
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
function check-existing() {
|
2015-06-15 16:21:27 +00:00
|
|
|
local running_in_terminal=false
|
|
|
|
# May be false if tty is not allocated (for example with ssh -T).
|
|
|
|
if [ -t 1 ]; then
|
|
|
|
running_in_terminal=true
|
|
|
|
fi
|
|
|
|
|
2015-06-19 20:04:16 +00:00
|
|
|
if [[ ${running_in_terminal} == "true" || ${KUBE_UP_AUTOMATIC_CLEANUP} == "true" ]]; then
|
2015-06-15 16:21:27 +00:00
|
|
|
if ! check-resources; then
|
|
|
|
local run_kube_down="n"
|
|
|
|
echo "${KUBE_RESOURCE_FOUND} found." >&2
|
|
|
|
# Get user input only if running in terminal.
|
|
|
|
if [[ ${running_in_terminal} == "true" && ${KUBE_UP_AUTOMATIC_CLEANUP} == "false" ]]; then
|
|
|
|
read -p "Would you like to shut down the old cluster (call kube-down)? [y/N] " run_kube_down
|
|
|
|
fi
|
|
|
|
if [[ ${run_kube_down} == "y" || ${run_kube_down} == "Y" || ${KUBE_UP_AUTOMATIC_CLEANUP} == "true" ]]; then
|
|
|
|
echo "... calling kube-down" >&2
|
|
|
|
kube-down
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
fi
|
2015-11-29 19:38:03 +00:00
|
|
|
}
|
2015-06-15 16:21:27 +00:00
|
|
|
|
2015-11-29 19:38:03 +00:00
|
|
|
function create-network() {
|
2015-01-07 23:02:35 +00:00
|
|
|
if ! gcloud compute networks --project "${PROJECT}" describe "${NETWORK}" &>/dev/null; then
|
2014-11-25 18:32:27 +00:00
|
|
|
echo "Creating new network: ${NETWORK}"
|
2014-09-24 17:55:58 +00:00
|
|
|
# The network needs to be created synchronously or we have a race. The
|
|
|
|
# firewalls can be added concurrent with instance creation.
|
2015-01-07 23:02:35 +00:00
|
|
|
gcloud compute networks create --project "${PROJECT}" "${NETWORK}" --range "10.240.0.0/16"
|
2014-10-28 20:47:49 +00:00
|
|
|
fi
|
|
|
|
|
2015-01-07 23:02:35 +00:00
|
|
|
if ! gcloud compute firewall-rules --project "${PROJECT}" describe "${NETWORK}-default-internal" &>/dev/null; then
|
2014-11-25 18:32:27 +00:00
|
|
|
gcloud compute firewall-rules create "${NETWORK}-default-internal" \
|
2014-09-24 23:03:38 +00:00
|
|
|
--project "${PROJECT}" \
|
|
|
|
--network "${NETWORK}" \
|
2014-11-25 18:32:27 +00:00
|
|
|
--source-ranges "10.0.0.0/8" \
|
2015-05-23 04:07:09 +00:00
|
|
|
--allow "tcp:1-65535,udp:1-65535,icmp" &
|
2014-10-28 20:47:49 +00:00
|
|
|
fi
|
|
|
|
|
2015-01-07 23:02:35 +00:00
|
|
|
if ! gcloud compute firewall-rules describe --project "${PROJECT}" "${NETWORK}-default-ssh" &>/dev/null; then
|
2014-11-25 18:32:27 +00:00
|
|
|
gcloud compute firewall-rules create "${NETWORK}-default-ssh" \
|
2014-09-24 23:03:38 +00:00
|
|
|
--project "${PROJECT}" \
|
|
|
|
--network "${NETWORK}" \
|
2014-11-25 18:32:27 +00:00
|
|
|
--source-ranges "0.0.0.0/0" \
|
|
|
|
--allow "tcp:22" &
|
2014-09-24 23:03:38 +00:00
|
|
|
fi
|
2015-11-29 19:38:03 +00:00
|
|
|
}
|
2014-09-24 23:03:38 +00:00
|
|
|
|
2015-11-29 19:38:03 +00:00
|
|
|
function create-master() {
|
Change GCE to use standalone Saltstack config:
Change provisioning to pass all variables to both master and node. Run
Salt in a masterless setup on all nodes ala
http://docs.saltstack.com/en/latest/topics/tutorials/quickstart.html,
which involves ensuring Salt daemon is NOT running after install. Kill
Salt master install. And fix push to actually work in this new flow.
As part of this, the GCE Salt config no longer has access to the Salt
mine, which is primarily obnoxious for two reasons: - The minions
can't use Salt to see the master: this is easily fixed by static
config. - The master can't see the list of all the minions: this is
fixed temporarily by static config in util.sh, but later, by other
means (see
https://github.com/GoogleCloudPlatform/kubernetes/issues/156, which
should eventually remove this direction).
As part of it, flatten all of cluster/gce/templates/* into
configure-vm.sh, using a single, separate piece of YAML to drive the
environment variables, rather than constantly rewriting the startup
script.
2015-03-02 22:38:58 +00:00
|
|
|
echo "Starting master and configuring firewalls"
|
2014-11-25 18:32:27 +00:00
|
|
|
gcloud compute firewall-rules create "${MASTER_NAME}-https" \
|
2014-10-06 20:25:27 +00:00
|
|
|
--project "${PROJECT}" \
|
|
|
|
--network "${NETWORK}" \
|
2014-11-25 18:32:27 +00:00
|
|
|
--target-tags "${MASTER_TAG}" \
|
|
|
|
--allow tcp:443 &
|
2014-07-14 17:50:04 +00:00
|
|
|
|
2015-02-23 21:57:09 +00:00
|
|
|
# We have to make sure the disk is created before creating the master VM, so
|
|
|
|
# run this in the foreground.
|
|
|
|
gcloud compute disks create "${MASTER_NAME}-pd" \
|
|
|
|
--project "${PROJECT}" \
|
|
|
|
--zone "${ZONE}" \
|
2015-05-11 12:30:57 +00:00
|
|
|
--type "${MASTER_DISK_TYPE}" \
|
|
|
|
--size "${MASTER_DISK_SIZE}"
|
2015-02-23 21:57:09 +00:00
|
|
|
|
2015-07-27 18:50:31 +00:00
|
|
|
# Create disk for cluster registry if enabled
|
|
|
|
if [[ "${ENABLE_CLUSTER_REGISTRY}" == true && -n "${CLUSTER_REGISTRY_DISK}" ]]; then
|
|
|
|
gcloud compute disks create "${CLUSTER_REGISTRY_DISK}" \
|
|
|
|
--project "${PROJECT}" \
|
|
|
|
--zone "${ZONE}" \
|
2015-08-19 22:47:55 +00:00
|
|
|
--type "${CLUSTER_REGISTRY_DISK_TYPE_GCE}" \
|
2015-07-27 18:50:31 +00:00
|
|
|
--size "${CLUSTER_REGISTRY_DISK_SIZE}" &
|
|
|
|
fi
|
|
|
|
|
2015-04-22 17:55:08 +00:00
|
|
|
# Generate a bearer token for this cluster. We push this separately
|
|
|
|
# from the other cluster variables so that the client (this
|
Change GCE to use standalone Saltstack config:
Change provisioning to pass all variables to both master and node. Run
Salt in a masterless setup on all nodes ala
http://docs.saltstack.com/en/latest/topics/tutorials/quickstart.html,
which involves ensuring Salt daemon is NOT running after install. Kill
Salt master install. And fix push to actually work in this new flow.
As part of this, the GCE Salt config no longer has access to the Salt
mine, which is primarily obnoxious for two reasons: - The minions
can't use Salt to see the master: this is easily fixed by static
config. - The master can't see the list of all the minions: this is
fixed temporarily by static config in util.sh, but later, by other
means (see
https://github.com/GoogleCloudPlatform/kubernetes/issues/156, which
should eventually remove this direction).
As part of it, flatten all of cluster/gce/templates/* into
configure-vm.sh, using a single, separate piece of YAML to drive the
environment variables, rather than constantly rewriting the startup
script.
2015-03-02 22:38:58 +00:00
|
|
|
# computer) can forget it later. This should disappear with
|
2015-08-06 01:08:26 +00:00
|
|
|
# http://issue.k8s.io/3168
|
Change GCE to use standalone Saltstack config:
Change provisioning to pass all variables to both master and node. Run
Salt in a masterless setup on all nodes ala
http://docs.saltstack.com/en/latest/topics/tutorials/quickstart.html,
which involves ensuring Salt daemon is NOT running after install. Kill
Salt master install. And fix push to actually work in this new flow.
As part of this, the GCE Salt config no longer has access to the Salt
mine, which is primarily obnoxious for two reasons: - The minions
can't use Salt to see the master: this is easily fixed by static
config. - The master can't see the list of all the minions: this is
fixed temporarily by static config in util.sh, but later, by other
means (see
https://github.com/GoogleCloudPlatform/kubernetes/issues/156, which
should eventually remove this direction).
As part of it, flatten all of cluster/gce/templates/* into
configure-vm.sh, using a single, separate piece of YAML to drive the
environment variables, rather than constantly rewriting the startup
script.
2015-03-02 22:38:58 +00:00
|
|
|
KUBELET_TOKEN=$(dd if=/dev/urandom bs=128 count=1 2>/dev/null | base64 | tr -d "=+/" | dd bs=32 count=1 2>/dev/null)
|
Generate a token for kube-proxy.
Tested on GCE.
Includes untested modifications for AWS and Vagrant.
No changes for any other distros.
Probably will work on other up-to-date providers
but beware. Symptom would be that service proxying
stops working.
1. Generates a token kube-proxy in AWS, GCE, and Vagrant setup scripts.
1. Distributes the token via salt-overlay, and salt to /var/lib/kube-proxy/kubeconfig
1. Changes kube-proxy args:
- use the --kubeconfig argument
- changes --master argument from http://MASTER:7080 to https://MASTER
- http -> https
- explicit port 7080 -> implied 443
Possible ways this might break other distros:
Mitigation: there is an default empty kubeconfig file.
If the distro does not populate the salt-overlay, then
it should get the empty, which parses to an empty
object, which, combined with the --master argument,
should still work.
Mitigation:
- azure: Special case to use 7080 in
- rackspace: way out of date, so don't care.
- vsphere: way out of date, so don't care.
- other distros: not using salt.
2015-04-24 16:27:11 +00:00
|
|
|
KUBE_PROXY_TOKEN=$(dd if=/dev/urandom bs=128 count=1 2>/dev/null | base64 | tr -d "=+/" | dd bs=32 count=1 2>/dev/null)
|
2014-09-24 17:55:58 +00:00
|
|
|
|
2015-04-17 17:35:19 +00:00
|
|
|
# Reserve the master's IP so that it can later be transferred to another VM
|
|
|
|
# without disrupting the kubelets. IPs are associated with regions, not zones,
|
|
|
|
# so extract the region name, which is the same as the zone but with the final
|
|
|
|
# dash and characters trailing the dash removed.
|
|
|
|
local REGION=${ZONE%-*}
|
2015-10-07 20:48:28 +00:00
|
|
|
create-static-ip "${MASTER_NAME}-ip" "${REGION}"
|
|
|
|
MASTER_RESERVED_IP=$(gcloud compute addresses describe "${MASTER_NAME}-ip" \
|
2015-04-17 17:35:19 +00:00
|
|
|
--project "${PROJECT}" \
|
|
|
|
--region "${REGION}" -q --format yaml | awk '/^address:/ { print $2 }')
|
|
|
|
|
2015-05-11 18:43:44 +00:00
|
|
|
create-certs "${MASTER_RESERVED_IP}"
|
|
|
|
|
|
|
|
create-master-instance "${MASTER_RESERVED_IP}" &
|
2015-11-29 19:38:03 +00:00
|
|
|
}
|
2014-07-14 17:50:04 +00:00
|
|
|
|
2015-11-29 19:38:03 +00:00
|
|
|
function create-nodes-firewall() {
|
2014-12-16 18:22:29 +00:00
|
|
|
# Create a single firewall rule for all minions.
|
2015-11-24 03:06:00 +00:00
|
|
|
create-firewall-rule "${NODE_TAG}-all" "${CLUSTER_IP_RANGE}" "${NODE_TAG}" &
|
2014-12-09 23:37:06 +00:00
|
|
|
|
2015-02-23 21:57:09 +00:00
|
|
|
# Report logging choice (if any).
|
|
|
|
if [[ "${ENABLE_NODE_LOGGING-}" == "true" ]]; then
|
|
|
|
echo "+++ Logging using Fluentd to ${LOGGING_DESTINATION:-unknown}"
|
|
|
|
fi
|
|
|
|
|
Change GCE to use standalone Saltstack config:
Change provisioning to pass all variables to both master and node. Run
Salt in a masterless setup on all nodes ala
http://docs.saltstack.com/en/latest/topics/tutorials/quickstart.html,
which involves ensuring Salt daemon is NOT running after install. Kill
Salt master install. And fix push to actually work in this new flow.
As part of this, the GCE Salt config no longer has access to the Salt
mine, which is primarily obnoxious for two reasons: - The minions
can't use Salt to see the master: this is easily fixed by static
config. - The master can't see the list of all the minions: this is
fixed temporarily by static config in util.sh, but later, by other
means (see
https://github.com/GoogleCloudPlatform/kubernetes/issues/156, which
should eventually remove this direction).
As part of it, flatten all of cluster/gce/templates/* into
configure-vm.sh, using a single, separate piece of YAML to drive the
environment variables, rather than constantly rewriting the startup
script.
2015-03-02 22:38:58 +00:00
|
|
|
# Wait for last batch of jobs
|
2016-01-11 23:23:21 +00:00
|
|
|
kube::util::wait-for-jobs || {
|
2016-01-22 22:42:32 +00:00
|
|
|
echo -e "${color_red}Some commands failed.${color_norm}" >&2
|
2016-01-11 23:23:21 +00:00
|
|
|
}
|
2015-11-29 19:38:03 +00:00
|
|
|
}
|
Change GCE to use standalone Saltstack config:
Change provisioning to pass all variables to both master and node. Run
Salt in a masterless setup on all nodes ala
http://docs.saltstack.com/en/latest/topics/tutorials/quickstart.html,
which involves ensuring Salt daemon is NOT running after install. Kill
Salt master install. And fix push to actually work in this new flow.
As part of this, the GCE Salt config no longer has access to the Salt
mine, which is primarily obnoxious for two reasons: - The minions
can't use Salt to see the master: this is easily fixed by static
config. - The master can't see the list of all the minions: this is
fixed temporarily by static config in util.sh, but later, by other
means (see
https://github.com/GoogleCloudPlatform/kubernetes/issues/156, which
should eventually remove this direction).
As part of it, flatten all of cluster/gce/templates/* into
configure-vm.sh, using a single, separate piece of YAML to drive the
environment variables, rather than constantly rewriting the startup
script.
2015-03-02 22:38:58 +00:00
|
|
|
|
2015-11-29 19:38:03 +00:00
|
|
|
function create-nodes-template() {
|
Change GCE to use standalone Saltstack config:
Change provisioning to pass all variables to both master and node. Run
Salt in a masterless setup on all nodes ala
http://docs.saltstack.com/en/latest/topics/tutorials/quickstart.html,
which involves ensuring Salt daemon is NOT running after install. Kill
Salt master install. And fix push to actually work in this new flow.
As part of this, the GCE Salt config no longer has access to the Salt
mine, which is primarily obnoxious for two reasons: - The minions
can't use Salt to see the master: this is easily fixed by static
config. - The master can't see the list of all the minions: this is
fixed temporarily by static config in util.sh, but later, by other
means (see
https://github.com/GoogleCloudPlatform/kubernetes/issues/156, which
should eventually remove this direction).
As part of it, flatten all of cluster/gce/templates/* into
configure-vm.sh, using a single, separate piece of YAML to drive the
environment variables, rather than constantly rewriting the startup
script.
2015-03-02 22:38:58 +00:00
|
|
|
echo "Creating minions."
|
2014-12-09 23:37:06 +00:00
|
|
|
|
2015-08-26 17:05:34 +00:00
|
|
|
# TODO(zmerlynn): Refactor setting scope flags.
|
2015-06-29 23:47:36 +00:00
|
|
|
local scope_flags=
|
2015-11-24 03:05:07 +00:00
|
|
|
if [ -n "${NODE_SCOPES}" ]; then
|
|
|
|
scope_flags="--scopes ${NODE_SCOPES}"
|
2014-12-09 23:37:06 +00:00
|
|
|
else
|
2015-06-29 23:47:36 +00:00
|
|
|
scope_flags="--no-scopes"
|
2014-12-09 23:37:06 +00:00
|
|
|
fi
|
2015-01-28 14:57:10 +00:00
|
|
|
|
Change GCE to use standalone Saltstack config:
Change provisioning to pass all variables to both master and node. Run
Salt in a masterless setup on all nodes ala
http://docs.saltstack.com/en/latest/topics/tutorials/quickstart.html,
which involves ensuring Salt daemon is NOT running after install. Kill
Salt master install. And fix push to actually work in this new flow.
As part of this, the GCE Salt config no longer has access to the Salt
mine, which is primarily obnoxious for two reasons: - The minions
can't use Salt to see the master: this is easily fixed by static
config. - The master can't see the list of all the minions: this is
fixed temporarily by static config in util.sh, but later, by other
means (see
https://github.com/GoogleCloudPlatform/kubernetes/issues/156, which
should eventually remove this direction).
As part of it, flatten all of cluster/gce/templates/* into
configure-vm.sh, using a single, separate piece of YAML to drive the
environment variables, rather than constantly rewriting the startup
script.
2015-03-02 22:38:58 +00:00
|
|
|
write-node-env
|
2015-09-28 23:22:13 +00:00
|
|
|
|
|
|
|
local template_name="${NODE_INSTANCE_PREFIX}-template"
|
2015-11-29 19:38:03 +00:00
|
|
|
|
2015-09-28 23:22:13 +00:00
|
|
|
create-node-instance-template $template_name
|
2015-11-29 19:38:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function create-nodes() {
|
|
|
|
local template_name="${NODE_INSTANCE_PREFIX}-template"
|
2015-01-28 14:57:10 +00:00
|
|
|
|
2015-12-11 08:09:09 +00:00
|
|
|
local defaulted_max_instances_per_mig=${MAX_INSTANCES_PER_MIG:-500}
|
|
|
|
|
|
|
|
if [[ ${defaulted_max_instances_per_mig} -le "0" ]]; then
|
|
|
|
echo "MAX_INSTANCES_PER_MIG cannot be negative. Assuming default 500"
|
|
|
|
defaulted_max_instances_per_mig=500
|
|
|
|
fi
|
|
|
|
local num_migs=$(((${NUM_NODES} + ${defaulted_max_instances_per_mig} - 1) / ${defaulted_max_instances_per_mig}))
|
|
|
|
local instances_per_mig=$(((${NUM_NODES} + ${num_migs} - 1) / ${num_migs}))
|
|
|
|
local last_mig_size=$((${NUM_NODES} - (${num_migs} - 1) * ${instances_per_mig}))
|
|
|
|
|
|
|
|
#TODO: parallelize this loop to speed up the process
|
|
|
|
for i in $(seq $((${num_migs} - 1))); do
|
|
|
|
gcloud compute instance-groups managed \
|
|
|
|
create "${NODE_INSTANCE_PREFIX}-group-$i" \
|
|
|
|
--project "${PROJECT}" \
|
|
|
|
--zone "${ZONE}" \
|
|
|
|
--base-instance-name "${NODE_INSTANCE_PREFIX}" \
|
|
|
|
--size "${instances_per_mig}" \
|
|
|
|
--template "$template_name" || true;
|
|
|
|
gcloud compute instance-groups managed wait-until-stable \
|
|
|
|
"${NODE_INSTANCE_PREFIX}-group-$i" \
|
|
|
|
--zone "${ZONE}" \
|
|
|
|
--project "${PROJECT}" || true;
|
|
|
|
done
|
|
|
|
|
|
|
|
# TODO: We don't add a suffix for the last group to keep backward compatibility when there's only one MIG.
|
|
|
|
# We should change it at some point, but note #18545 when changing this.
|
2015-07-22 11:40:22 +00:00
|
|
|
gcloud compute instance-groups managed \
|
2015-12-11 00:07:17 +00:00
|
|
|
create "${NODE_INSTANCE_PREFIX}-group" \
|
2015-01-28 14:57:10 +00:00
|
|
|
--project "${PROJECT}" \
|
2015-07-22 11:40:22 +00:00
|
|
|
--zone "${ZONE}" \
|
2015-01-28 14:57:10 +00:00
|
|
|
--base-instance-name "${NODE_INSTANCE_PREFIX}" \
|
2015-12-11 08:09:09 +00:00
|
|
|
--size "${last_mig_size}" \
|
2015-09-28 23:22:13 +00:00
|
|
|
--template "$template_name" || true;
|
2015-07-22 11:40:22 +00:00
|
|
|
gcloud compute instance-groups managed wait-until-stable \
|
2015-12-11 00:07:17 +00:00
|
|
|
"${NODE_INSTANCE_PREFIX}-group" \
|
2015-12-11 08:09:09 +00:00
|
|
|
--zone "${ZONE}" \
|
|
|
|
--project "${PROJECT}" || true;
|
2015-11-29 19:38:03 +00:00
|
|
|
}
|
2015-12-11 08:09:09 +00:00
|
|
|
|
2015-11-29 19:38:03 +00:00
|
|
|
function create-autoscaler() {
|
2015-07-08 14:48:33 +00:00
|
|
|
# Create autoscaler for nodes if requested
|
|
|
|
if [[ "${ENABLE_NODE_AUTOSCALER}" == "true" ]]; then
|
|
|
|
METRICS=""
|
2015-09-25 15:48:23 +00:00
|
|
|
# Current usage
|
2015-07-08 14:48:33 +00:00
|
|
|
METRICS+="--custom-metric-utilization metric=custom.cloudmonitoring.googleapis.com/kubernetes.io/cpu/node_utilization,"
|
|
|
|
METRICS+="utilization-target=${TARGET_NODE_UTILIZATION},utilization-target-type=GAUGE "
|
|
|
|
METRICS+="--custom-metric-utilization metric=custom.cloudmonitoring.googleapis.com/kubernetes.io/memory/node_utilization,"
|
|
|
|
METRICS+="utilization-target=${TARGET_NODE_UTILIZATION},utilization-target-type=GAUGE "
|
2015-09-25 15:48:23 +00:00
|
|
|
|
|
|
|
# Reservation
|
|
|
|
METRICS+="--custom-metric-utilization metric=custom.cloudmonitoring.googleapis.com/kubernetes.io/cpu/node_reservation,"
|
|
|
|
METRICS+="utilization-target=${TARGET_NODE_UTILIZATION},utilization-target-type=GAUGE "
|
|
|
|
METRICS+="--custom-metric-utilization metric=custom.cloudmonitoring.googleapis.com/kubernetes.io/memory/node_reservation,"
|
|
|
|
METRICS+="utilization-target=${TARGET_NODE_UTILIZATION},utilization-target-type=GAUGE "
|
|
|
|
|
2015-12-11 08:09:09 +00:00
|
|
|
echo "Creating node autoscalers."
|
|
|
|
|
|
|
|
local max_instances_per_mig=$(((${AUTOSCALER_MAX_NODES} + ${num_migs} - 1) / ${num_migs}))
|
|
|
|
local last_max_instances=$((${AUTOSCALER_MAX_NODES} - (${num_migs} - 1) * ${max_instances_per_mig}))
|
|
|
|
local min_instances_per_mig=$(((${AUTOSCALER_MIN_NODES} + ${num_migs} - 1) / ${num_migs}))
|
|
|
|
local last_min_instances=$((${AUTOSCALER_MIN_NODES} - (${num_migs} - 1) * ${min_instances_per_mig}))
|
|
|
|
|
|
|
|
for i in $(seq $((${num_migs} - 1))); do
|
|
|
|
gcloud compute instance-groups managed set-autoscaling "${NODE_INSTANCE_PREFIX}-group-$i" --zone "${ZONE}" --project "${PROJECT}" \
|
|
|
|
--min-num-replicas "${min_instances_per_mig}" --max-num-replicas "${max_instances_per_mig}" ${METRICS} || true
|
|
|
|
done
|
2015-12-11 00:07:17 +00:00
|
|
|
gcloud compute instance-groups managed set-autoscaling "${NODE_INSTANCE_PREFIX}-group" --zone "${ZONE}" --project "${PROJECT}" \
|
2015-12-11 08:09:09 +00:00
|
|
|
--min-num-replicas "${last_min_instances}" --max-num-replicas "${last_max_instances}" ${METRICS} || true
|
2015-07-08 14:48:33 +00:00
|
|
|
fi
|
2015-11-29 19:38:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function check-cluster() {
|
|
|
|
detect-node-names
|
|
|
|
detect-master
|
2015-07-08 14:48:33 +00:00
|
|
|
|
2015-10-07 01:51:27 +00:00
|
|
|
echo "Waiting up to ${KUBE_CLUSTER_INITIALIZATION_TIMEOUT} seconds for cluster initialization."
|
2014-07-14 17:50:04 +00:00
|
|
|
echo
|
|
|
|
echo " This will continually check to see if the API for kubernetes is reachable."
|
2015-10-07 01:51:27 +00:00
|
|
|
echo " This may time out if there was some uncaught error during start up."
|
2014-07-14 17:50:04 +00:00
|
|
|
echo
|
|
|
|
|
2015-05-28 02:53:24 +00:00
|
|
|
# curl in mavericks is borked.
|
|
|
|
secure=""
|
2015-11-03 04:32:42 +00:00
|
|
|
if which sw_vers >& /dev/null; then
|
2015-05-28 02:53:24 +00:00
|
|
|
if [[ $(sw_vers | grep ProductVersion | awk '{print $2}') = "10.9."* ]]; then
|
|
|
|
secure="--insecure"
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2015-10-07 01:51:27 +00:00
|
|
|
local start_time=$(date +%s)
|
2015-05-11 18:43:44 +00:00
|
|
|
until curl --cacert "${CERT_DIR}/pki/ca.crt" \
|
|
|
|
-H "Authorization: Bearer ${KUBE_BEARER_TOKEN}" \
|
2015-05-28 02:53:24 +00:00
|
|
|
${secure} \
|
2015-04-17 21:04:14 +00:00
|
|
|
--max-time 5 --fail --output /dev/null --silent \
|
2015-06-30 02:30:14 +00:00
|
|
|
"https://${KUBE_MASTER_IP}/api/v1/pods"; do
|
2015-10-07 01:51:27 +00:00
|
|
|
local elapsed=$(($(date +%s) - ${start_time}))
|
|
|
|
if [[ ${elapsed} -gt ${KUBE_CLUSTER_INITIALIZATION_TIMEOUT} ]]; then
|
2015-10-07 18:19:32 +00:00
|
|
|
echo -e "${color_red}Cluster failed to initialize within ${KUBE_CLUSTER_INITIALIZATION_TIMEOUT} seconds.${color_norm}" >&2
|
2015-10-07 01:51:27 +00:00
|
|
|
exit 2
|
|
|
|
fi
|
2014-07-14 17:50:04 +00:00
|
|
|
printf "."
|
|
|
|
sleep 2
|
|
|
|
done
|
|
|
|
|
|
|
|
echo "Kubernetes cluster created."
|
2014-08-06 16:57:00 +00:00
|
|
|
|
2015-05-11 18:43:44 +00:00
|
|
|
export KUBE_CERT="${CERT_DIR}/pki/issued/kubecfg.crt"
|
|
|
|
export KUBE_KEY="${CERT_DIR}/pki/private/kubecfg.key"
|
|
|
|
export CA_CERT="${CERT_DIR}/pki/ca.crt"
|
2015-03-06 22:49:25 +00:00
|
|
|
export CONTEXT="${PROJECT}_${INSTANCE_PREFIX}"
|
2015-02-02 21:49:03 +00:00
|
|
|
(
|
|
|
|
umask 077
|
2015-03-06 22:49:25 +00:00
|
|
|
create-kubeconfig
|
2014-09-23 22:54:27 +00:00
|
|
|
)
|
2014-12-09 23:37:06 +00:00
|
|
|
|
2015-08-22 01:47:31 +00:00
|
|
|
# ensures KUBECONFIG is set
|
|
|
|
get-kubeconfig-basicauth
|
2014-12-09 23:37:06 +00:00
|
|
|
echo
|
|
|
|
echo -e "${color_green}Kubernetes cluster is running. The master is running at:"
|
|
|
|
echo
|
|
|
|
echo -e "${color_yellow} https://${KUBE_MASTER_IP}"
|
|
|
|
echo
|
2015-03-06 22:49:25 +00:00
|
|
|
echo -e "${color_green}The user name and password to use is located in ${KUBECONFIG}.${color_norm}"
|
2014-12-09 23:37:06 +00:00
|
|
|
echo
|
|
|
|
|
2014-07-14 17:50:04 +00:00
|
|
|
}
|
|
|
|
|
2014-12-09 23:07:54 +00:00
|
|
|
# Delete a kubernetes cluster. This is called from test-teardown.
|
2014-12-09 00:52:43 +00:00
|
|
|
#
|
|
|
|
# Assumed vars:
|
|
|
|
# MASTER_NAME
|
2015-01-28 14:57:10 +00:00
|
|
|
# NODE_INSTANCE_PREFIX
|
2014-12-09 00:52:43 +00:00
|
|
|
# ZONE
|
|
|
|
# This function tears down cluster resources 10 at a time to avoid issuing too many
|
|
|
|
# API calls and exceeding API quota. It is important to bring down the instances before bringing
|
|
|
|
# down the firewall rules and routes.
|
2014-07-14 17:50:04 +00:00
|
|
|
function kube-down {
|
|
|
|
detect-project
|
2015-12-11 08:09:09 +00:00
|
|
|
detect-node-names # For INSTANCE_GROUPS
|
2014-07-14 17:50:04 +00:00
|
|
|
|
|
|
|
echo "Bringing down cluster"
|
2015-05-12 23:12:15 +00:00
|
|
|
set +e # Do not stop on error
|
2014-12-09 00:52:43 +00:00
|
|
|
|
2015-12-11 08:09:09 +00:00
|
|
|
# Delete autoscaler for nodes if present. We assume that all or none instance groups have an autoscaler
|
2015-07-08 14:48:33 +00:00
|
|
|
local autoscaler
|
2015-08-19 06:42:44 +00:00
|
|
|
autoscaler=( $(gcloud compute instance-groups managed list --zone "${ZONE}" --project "${PROJECT}" \
|
2015-12-11 00:07:17 +00:00
|
|
|
| grep "${NODE_INSTANCE_PREFIX}-group" \
|
2015-08-19 06:42:44 +00:00
|
|
|
| awk '{print $7}') )
|
|
|
|
if [[ "${autoscaler:-}" == "yes" ]]; then
|
2015-12-18 10:12:07 +00:00
|
|
|
for group in ${INSTANCE_GROUPS[@]:-}; do
|
2015-12-11 08:09:09 +00:00
|
|
|
gcloud compute instance-groups managed stop-autoscaling "${group}" --zone "${ZONE}" --project "${PROJECT}"
|
|
|
|
done
|
2015-07-08 14:48:33 +00:00
|
|
|
fi
|
|
|
|
|
2015-07-09 19:01:06 +00:00
|
|
|
# Get the name of the managed instance group template before we delete the
|
2015-11-29 19:38:03 +00:00
|
|
|
# managed instance group. (The name of the managed instance group template may
|
2015-07-09 19:01:06 +00:00
|
|
|
# change during a cluster upgrade.)
|
2015-12-11 00:07:17 +00:00
|
|
|
local template=$(get-template "${PROJECT}" "${ZONE}" "${NODE_INSTANCE_PREFIX}-group")
|
2015-07-09 19:01:06 +00:00
|
|
|
|
2015-07-03 20:29:14 +00:00
|
|
|
# The gcloud APIs don't return machine parseable error codes/retry information. Therefore the best we can
|
2015-05-12 23:12:15 +00:00
|
|
|
# do is parse the output and special case particular responses we are interested in.
|
2015-12-18 10:12:07 +00:00
|
|
|
for group in ${INSTANCE_GROUPS[@]:-}; do
|
2015-12-11 08:09:09 +00:00
|
|
|
if gcloud compute instance-groups managed describe "${group}" --project "${PROJECT}" --zone "${ZONE}" &>/dev/null; then
|
|
|
|
deleteCmdOutput=$(gcloud compute instance-groups managed delete --zone "${ZONE}" \
|
|
|
|
--project "${PROJECT}" \
|
|
|
|
--quiet \
|
|
|
|
"${group}")
|
|
|
|
if [[ "$deleteCmdOutput" != "" ]]; then
|
|
|
|
# Managed instance group deletion is done asynchronously, we must wait for it to complete, or subsequent steps fail
|
|
|
|
deleteCmdOperationId=$(echo $deleteCmdOutput | grep "Operation:" | sed "s/.*Operation:[[:space:]]*\([^[:space:]]*\).*/\1/g")
|
|
|
|
if [[ "$deleteCmdOperationId" != "" ]]; then
|
|
|
|
deleteCmdStatus="PENDING"
|
|
|
|
while [[ "$deleteCmdStatus" != "DONE" ]]
|
|
|
|
do
|
|
|
|
sleep 5
|
|
|
|
deleteCmdOperationOutput=$(gcloud compute instance-groups managed --zone "${ZONE}" --project "${PROJECT}" get-operation $deleteCmdOperationId)
|
|
|
|
deleteCmdStatus=$(echo $deleteCmdOperationOutput | grep -i "status:" | sed "s/.*status:[[:space:]]*\([^[:space:]]*\).*/\1/g")
|
|
|
|
echo "Waiting for MIG deletion to complete. Current status: " $deleteCmdStatus
|
|
|
|
done
|
|
|
|
fi
|
2015-05-29 18:46:10 +00:00
|
|
|
fi
|
2015-05-12 01:51:59 +00:00
|
|
|
fi
|
2015-12-11 08:09:09 +00:00
|
|
|
done
|
2015-01-28 14:57:10 +00:00
|
|
|
|
2015-07-09 19:01:06 +00:00
|
|
|
if gcloud compute instance-templates describe --project "${PROJECT}" "${template}" &>/dev/null; then
|
2015-05-29 18:46:10 +00:00
|
|
|
gcloud compute instance-templates delete \
|
|
|
|
--project "${PROJECT}" \
|
|
|
|
--quiet \
|
2015-07-09 19:01:06 +00:00
|
|
|
"${template}"
|
2015-05-29 18:46:10 +00:00
|
|
|
fi
|
2015-01-28 14:57:10 +00:00
|
|
|
|
2014-12-09 00:52:43 +00:00
|
|
|
# First delete the master (if it exists).
|
2015-06-12 20:43:29 +00:00
|
|
|
if gcloud compute instances describe "${MASTER_NAME}" --zone "${ZONE}" --project "${PROJECT}" &>/dev/null; then
|
2015-05-29 18:46:10 +00:00
|
|
|
gcloud compute instances delete \
|
|
|
|
--project "${PROJECT}" \
|
|
|
|
--quiet \
|
|
|
|
--delete-disks all \
|
|
|
|
--zone "${ZONE}" \
|
|
|
|
"${MASTER_NAME}"
|
|
|
|
fi
|
Change GCE to use standalone Saltstack config:
Change provisioning to pass all variables to both master and node. Run
Salt in a masterless setup on all nodes ala
http://docs.saltstack.com/en/latest/topics/tutorials/quickstart.html,
which involves ensuring Salt daemon is NOT running after install. Kill
Salt master install. And fix push to actually work in this new flow.
As part of this, the GCE Salt config no longer has access to the Salt
mine, which is primarily obnoxious for two reasons: - The minions
can't use Salt to see the master: this is easily fixed by static
config. - The master can't see the list of all the minions: this is
fixed temporarily by static config in util.sh, but later, by other
means (see
https://github.com/GoogleCloudPlatform/kubernetes/issues/156, which
should eventually remove this direction).
As part of it, flatten all of cluster/gce/templates/* into
configure-vm.sh, using a single, separate piece of YAML to drive the
environment variables, rather than constantly rewriting the startup
script.
2015-03-02 22:38:58 +00:00
|
|
|
|
2015-05-29 18:46:10 +00:00
|
|
|
# Delete the master pd (possibly leaked by kube-up if master create failed).
|
2015-06-12 20:43:29 +00:00
|
|
|
if gcloud compute disks describe "${MASTER_NAME}"-pd --zone "${ZONE}" --project "${PROJECT}" &>/dev/null; then
|
2015-05-29 18:46:10 +00:00
|
|
|
gcloud compute disks delete \
|
|
|
|
--project "${PROJECT}" \
|
|
|
|
--quiet \
|
|
|
|
--zone "${ZONE}" \
|
|
|
|
"${MASTER_NAME}"-pd
|
|
|
|
fi
|
Change GCE to use standalone Saltstack config:
Change provisioning to pass all variables to both master and node. Run
Salt in a masterless setup on all nodes ala
http://docs.saltstack.com/en/latest/topics/tutorials/quickstart.html,
which involves ensuring Salt daemon is NOT running after install. Kill
Salt master install. And fix push to actually work in this new flow.
As part of this, the GCE Salt config no longer has access to the Salt
mine, which is primarily obnoxious for two reasons: - The minions
can't use Salt to see the master: this is easily fixed by static
config. - The master can't see the list of all the minions: this is
fixed temporarily by static config in util.sh, but later, by other
means (see
https://github.com/GoogleCloudPlatform/kubernetes/issues/156, which
should eventually remove this direction).
As part of it, flatten all of cluster/gce/templates/* into
configure-vm.sh, using a single, separate piece of YAML to drive the
environment variables, rather than constantly rewriting the startup
script.
2015-03-02 22:38:58 +00:00
|
|
|
|
2015-07-27 18:50:31 +00:00
|
|
|
# Delete disk for cluster registry if enabled
|
|
|
|
if [[ "${ENABLE_CLUSTER_REGISTRY}" == true && -n "${CLUSTER_REGISTRY_DISK}" ]]; then
|
|
|
|
if gcloud compute disks describe "${CLUSTER_REGISTRY_DISK}" --zone "${ZONE}" --project "${PROJECT}" &>/dev/null; then
|
|
|
|
gcloud compute disks delete \
|
|
|
|
--project "${PROJECT}" \
|
|
|
|
--quiet \
|
|
|
|
--zone "${ZONE}" \
|
|
|
|
"${CLUSTER_REGISTRY_DISK}"
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2014-12-09 00:52:43 +00:00
|
|
|
# Find out what minions are running.
|
|
|
|
local -a minions
|
|
|
|
minions=( $(gcloud compute instances list \
|
|
|
|
--project "${PROJECT}" --zone "${ZONE}" \
|
2015-01-28 14:57:10 +00:00
|
|
|
--regexp "${NODE_INSTANCE_PREFIX}-.+" \
|
2014-12-09 00:52:43 +00:00
|
|
|
| awk 'NR >= 2 { print $1 }') )
|
|
|
|
# If any minions are running, delete them in batches.
|
|
|
|
while (( "${#minions[@]}" > 0 )); do
|
|
|
|
echo Deleting nodes "${minions[*]::10}"
|
|
|
|
gcloud compute instances delete \
|
2014-11-25 18:32:27 +00:00
|
|
|
--project "${PROJECT}" \
|
|
|
|
--quiet \
|
2014-12-09 23:37:06 +00:00
|
|
|
--delete-disks boot \
|
2014-12-09 00:52:43 +00:00
|
|
|
--zone "${ZONE}" \
|
2015-05-12 23:12:15 +00:00
|
|
|
"${minions[@]::10}"
|
2014-12-09 00:52:43 +00:00
|
|
|
minions=( "${minions[@]:10}" )
|
|
|
|
done
|
2014-08-13 20:26:03 +00:00
|
|
|
|
2014-12-09 00:52:43 +00:00
|
|
|
# Delete firewall rule for the master.
|
2015-06-12 20:43:29 +00:00
|
|
|
if gcloud compute firewall-rules describe --project "${PROJECT}" "${MASTER_NAME}-https" &>/dev/null; then
|
2015-05-29 18:46:10 +00:00
|
|
|
gcloud compute firewall-rules delete \
|
|
|
|
--project "${PROJECT}" \
|
|
|
|
--quiet \
|
|
|
|
"${MASTER_NAME}-https"
|
|
|
|
fi
|
2014-12-09 00:52:43 +00:00
|
|
|
|
2014-12-16 18:22:29 +00:00
|
|
|
# Delete firewall rule for minions.
|
2015-11-24 03:06:00 +00:00
|
|
|
if gcloud compute firewall-rules describe --project "${PROJECT}" "${NODE_TAG}-all" &>/dev/null; then
|
2015-05-29 18:46:10 +00:00
|
|
|
gcloud compute firewall-rules delete \
|
|
|
|
--project "${PROJECT}" \
|
|
|
|
--quiet \
|
2015-11-24 03:06:00 +00:00
|
|
|
"${NODE_TAG}-all"
|
2015-05-29 18:46:10 +00:00
|
|
|
fi
|
2014-07-14 17:50:04 +00:00
|
|
|
|
2014-12-09 00:52:43 +00:00
|
|
|
# Delete routes.
|
|
|
|
local -a routes
|
2015-06-02 17:54:35 +00:00
|
|
|
# Clean up all routes w/ names like "<cluster-name>-<node-GUID>"
|
|
|
|
# e.g. "kubernetes-12345678-90ab-cdef-1234-567890abcdef". The name is
|
|
|
|
# determined by the node controller on the master.
|
|
|
|
# Note that this is currently a noop, as synchronously deleting the node MIG
|
|
|
|
# first allows the master to cleanup routes itself.
|
|
|
|
local TRUNCATED_PREFIX="${INSTANCE_PREFIX:0:26}"
|
2014-12-09 00:52:43 +00:00
|
|
|
routes=( $(gcloud compute routes list --project "${PROJECT}" \
|
2015-06-02 17:54:35 +00:00
|
|
|
--regexp "${TRUNCATED_PREFIX}-.{8}-.{4}-.{4}-.{4}-.{12}" | awk 'NR >= 2 { print $1 }') )
|
2014-12-09 00:52:43 +00:00
|
|
|
while (( "${#routes[@]}" > 0 )); do
|
|
|
|
echo Deleting routes "${routes[*]::10}"
|
|
|
|
gcloud compute routes delete \
|
2014-11-25 18:32:27 +00:00
|
|
|
--project "${PROJECT}" \
|
|
|
|
--quiet \
|
2015-05-12 23:12:15 +00:00
|
|
|
"${routes[@]::10}"
|
2014-12-09 00:52:43 +00:00
|
|
|
routes=( "${routes[@]:10}" )
|
2014-11-25 18:32:27 +00:00
|
|
|
done
|
2014-07-14 17:50:04 +00:00
|
|
|
|
2015-02-22 19:27:16 +00:00
|
|
|
# Delete the master's reserved IP
|
|
|
|
local REGION=${ZONE%-*}
|
2015-06-12 20:43:29 +00:00
|
|
|
if gcloud compute addresses describe "${MASTER_NAME}-ip" --region "${REGION}" --project "${PROJECT}" &>/dev/null; then
|
2015-05-29 18:46:10 +00:00
|
|
|
gcloud compute addresses delete \
|
|
|
|
--project "${PROJECT}" \
|
|
|
|
--region "${REGION}" \
|
|
|
|
--quiet \
|
|
|
|
"${MASTER_NAME}-ip"
|
|
|
|
fi
|
2015-02-22 19:27:16 +00:00
|
|
|
|
2015-03-06 22:49:25 +00:00
|
|
|
export CONTEXT="${PROJECT}_${INSTANCE_PREFIX}"
|
|
|
|
clear-kubeconfig
|
2015-05-12 23:12:15 +00:00
|
|
|
set -e
|
2014-07-14 17:50:04 +00:00
|
|
|
}
|
|
|
|
|
2015-07-09 19:01:06 +00:00
|
|
|
# Gets the instance template for the managed instance group with the provided
|
|
|
|
# project, zone, and group name. It echos the template name so that the function
|
|
|
|
# output can be used.
|
|
|
|
#
|
|
|
|
# $1: project
|
|
|
|
# $2: zone
|
|
|
|
# $3: managed instance group name
|
|
|
|
function get-template {
|
|
|
|
# url is set to https://www.googleapis.com/compute/v1/projects/$1/global/instanceTemplates/<template>
|
2015-07-22 11:40:22 +00:00
|
|
|
local url=$(gcloud compute instance-groups managed describe --project="${1}" --zone="${2}" "${3}" | grep instanceTemplate)
|
2015-07-09 19:01:06 +00:00
|
|
|
# template is set to <template> (the pattern strips off all but last slash)
|
|
|
|
local template="${url##*/}"
|
|
|
|
echo "${template}"
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-06-15 16:21:27 +00:00
|
|
|
# Checks if there are any present resources related kubernetes cluster.
|
|
|
|
#
|
|
|
|
# Assumed vars:
|
|
|
|
# MASTER_NAME
|
|
|
|
# NODE_INSTANCE_PREFIX
|
|
|
|
# ZONE
|
|
|
|
# Vars set:
|
|
|
|
# KUBE_RESOURCE_FOUND
|
|
|
|
function check-resources {
|
|
|
|
detect-project
|
2015-12-11 08:09:09 +00:00
|
|
|
detect-node-names
|
2015-06-15 16:21:27 +00:00
|
|
|
|
|
|
|
echo "Looking for already existing resources"
|
|
|
|
KUBE_RESOURCE_FOUND=""
|
|
|
|
|
2015-12-11 08:09:09 +00:00
|
|
|
if [[ -n "${INSTANCE_GROUPS[@]:-}" ]]; then
|
|
|
|
KUBE_RESOURCE_FOUND="Managed instance groups ${INSTANCE_GROUPS[@]}"
|
2015-06-15 16:21:27 +00:00
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
|
2015-06-17 12:59:12 +00:00
|
|
|
if gcloud compute instance-templates describe --project "${PROJECT}" "${NODE_INSTANCE_PREFIX}-template" &>/dev/null; then
|
2015-06-15 16:21:27 +00:00
|
|
|
KUBE_RESOURCE_FOUND="Instance template ${NODE_INSTANCE_PREFIX}-template"
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
|
2015-06-17 12:59:12 +00:00
|
|
|
if gcloud compute instances describe --project "${PROJECT}" "${MASTER_NAME}" --zone "${ZONE}" &>/dev/null; then
|
2015-06-15 16:21:27 +00:00
|
|
|
KUBE_RESOURCE_FOUND="Kubernetes master ${MASTER_NAME}"
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
|
2015-06-17 12:59:12 +00:00
|
|
|
if gcloud compute disks describe --project "${PROJECT}" "${MASTER_NAME}"-pd --zone "${ZONE}" &>/dev/null; then
|
2015-06-15 16:21:27 +00:00
|
|
|
KUBE_RESOURCE_FOUND="Persistent disk ${MASTER_NAME}-pd"
|
|
|
|
return 1
|
|
|
|
fi
|
2015-07-27 18:50:31 +00:00
|
|
|
|
|
|
|
if gcloud compute disks describe --project "${PROJECT}" "${CLUSTER_REGISTRY_DISK}" --zone "${ZONE}" &>/dev/null; then
|
|
|
|
KUBE_RESOURCE_FOUND="Persistent disk ${CLUSTER_REGISTRY_DISK}"
|
|
|
|
return 1
|
|
|
|
fi
|
2015-06-15 16:21:27 +00:00
|
|
|
|
|
|
|
# Find out what minions are running.
|
|
|
|
local -a minions
|
|
|
|
minions=( $(gcloud compute instances list \
|
|
|
|
--project "${PROJECT}" --zone "${ZONE}" \
|
|
|
|
--regexp "${NODE_INSTANCE_PREFIX}-.+" \
|
|
|
|
| awk 'NR >= 2 { print $1 }') )
|
|
|
|
if (( "${#minions[@]}" > 0 )); then
|
|
|
|
KUBE_RESOURCE_FOUND="${#minions[@]} matching matching ${NODE_INSTANCE_PREFIX}-.+"
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
|
2015-06-17 12:59:12 +00:00
|
|
|
if gcloud compute firewall-rules describe --project "${PROJECT}" "${MASTER_NAME}-https" &>/dev/null; then
|
2015-06-19 15:17:06 +00:00
|
|
|
KUBE_RESOURCE_FOUND="Firewall rules for ${MASTER_NAME}-https"
|
2015-06-15 16:21:27 +00:00
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
|
2015-11-24 03:06:00 +00:00
|
|
|
if gcloud compute firewall-rules describe --project "${PROJECT}" "${NODE_TAG}-all" &>/dev/null; then
|
2015-06-19 15:17:06 +00:00
|
|
|
KUBE_RESOURCE_FOUND="Firewall rules for ${MASTER_NAME}-all"
|
2015-06-15 16:21:27 +00:00
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
local -a routes
|
|
|
|
routes=( $(gcloud compute routes list --project "${PROJECT}" \
|
|
|
|
--regexp "${INSTANCE_PREFIX}-minion-.{4}" | awk 'NR >= 2 { print $1 }') )
|
|
|
|
if (( "${#routes[@]}" > 0 )); then
|
|
|
|
KUBE_RESOURCE_FOUND="${#routes[@]} routes matching ${INSTANCE_PREFIX}-minion-.{4}"
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
local REGION=${ZONE%-*}
|
2015-06-17 12:59:12 +00:00
|
|
|
if gcloud compute addresses describe --project "${PROJECT}" "${MASTER_NAME}-ip" --region "${REGION}" &>/dev/null; then
|
2015-06-15 16:21:27 +00:00
|
|
|
KUBE_RESOURCE_FOUND="Master's reserved IP"
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
# No resources found.
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2015-06-01 15:59:12 +00:00
|
|
|
# Prepare to push new binaries to kubernetes cluster
|
|
|
|
# $1 - whether prepare push to node
|
|
|
|
function prepare-push() {
|
2015-04-28 15:50:43 +00:00
|
|
|
#TODO(dawnchen): figure out how to upgrade coreos node
|
|
|
|
if [[ "${OS_DISTRIBUTION}" != "debian" ]]; then
|
|
|
|
echo "Updating a kubernetes cluster with ${OS_DISTRIBUTION} is not supported yet." >&2
|
2015-06-01 15:59:12 +00:00
|
|
|
exit 1
|
2015-04-28 15:50:43 +00:00
|
|
|
fi
|
|
|
|
|
Change GCE to use standalone Saltstack config:
Change provisioning to pass all variables to both master and node. Run
Salt in a masterless setup on all nodes ala
http://docs.saltstack.com/en/latest/topics/tutorials/quickstart.html,
which involves ensuring Salt daemon is NOT running after install. Kill
Salt master install. And fix push to actually work in this new flow.
As part of this, the GCE Salt config no longer has access to the Salt
mine, which is primarily obnoxious for two reasons: - The minions
can't use Salt to see the master: this is easily fixed by static
config. - The master can't see the list of all the minions: this is
fixed temporarily by static config in util.sh, but later, by other
means (see
https://github.com/GoogleCloudPlatform/kubernetes/issues/156, which
should eventually remove this direction).
As part of it, flatten all of cluster/gce/templates/* into
configure-vm.sh, using a single, separate piece of YAML to drive the
environment variables, rather than constantly rewriting the startup
script.
2015-03-02 22:38:58 +00:00
|
|
|
OUTPUT=${KUBE_ROOT}/_output/logs
|
|
|
|
mkdir -p ${OUTPUT}
|
|
|
|
|
|
|
|
ensure-temp-dir
|
2014-09-23 22:54:27 +00:00
|
|
|
detect-project
|
2014-07-14 17:50:04 +00:00
|
|
|
detect-master
|
2015-11-09 07:33:06 +00:00
|
|
|
detect-node-names
|
2015-08-22 01:47:31 +00:00
|
|
|
get-kubeconfig-basicauth
|
|
|
|
get-kubeconfig-bearertoken
|
2014-07-14 17:50:04 +00:00
|
|
|
|
2014-09-23 22:54:27 +00:00
|
|
|
# Make sure we have the tar files staged on Google Storage
|
2015-06-01 15:59:12 +00:00
|
|
|
tars_from_version
|
|
|
|
|
|
|
|
# Prepare node env vars and update MIG template
|
|
|
|
if [[ "${1-}" == "true" ]]; then
|
|
|
|
write-node-env
|
|
|
|
|
2015-08-26 17:05:34 +00:00
|
|
|
# TODO(zmerlynn): Refactor setting scope flags.
|
2015-06-29 23:47:36 +00:00
|
|
|
local scope_flags=
|
2015-11-24 03:05:07 +00:00
|
|
|
if [ -n "${NODE_SCOPES}" ]; then
|
|
|
|
scope_flags="--scopes ${NODE_SCOPES}"
|
2015-06-01 15:59:12 +00:00
|
|
|
else
|
2015-06-29 23:47:36 +00:00
|
|
|
scope_flags="--no-scopes"
|
2015-06-01 15:59:12 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
# Ugly hack: Since it is not possible to delete instance-template that is currently
|
|
|
|
# being used, create a temp one, then delete the old one and recreate it once again.
|
2015-09-28 23:22:13 +00:00
|
|
|
local tmp_template_name="${NODE_INSTANCE_PREFIX}-template-tmp"
|
|
|
|
create-node-instance-template $tmp_template_name
|
2015-06-01 15:59:12 +00:00
|
|
|
|
2015-09-28 23:22:13 +00:00
|
|
|
local template_name="${NODE_INSTANCE_PREFIX}-template"
|
2015-12-18 10:12:07 +00:00
|
|
|
for group in ${INSTANCE_GROUPS[@]:-}; do
|
2015-12-11 08:09:09 +00:00
|
|
|
gcloud compute instance-groups managed \
|
|
|
|
set-instance-template "${group}" \
|
|
|
|
--template "$tmp_template_name" \
|
|
|
|
--zone "${ZONE}" \
|
|
|
|
--project "${PROJECT}" || true;
|
|
|
|
done
|
2015-06-01 15:59:12 +00:00
|
|
|
|
|
|
|
gcloud compute instance-templates delete \
|
|
|
|
--project "${PROJECT}" \
|
|
|
|
--quiet \
|
2015-09-28 23:22:13 +00:00
|
|
|
"$template_name" || true
|
2015-06-01 15:59:12 +00:00
|
|
|
|
2015-09-28 23:22:13 +00:00
|
|
|
create-node-instance-template "$template_name"
|
2015-06-01 15:59:12 +00:00
|
|
|
|
2015-12-18 10:12:07 +00:00
|
|
|
for group in ${INSTANCE_GROUPS[@]:-}; do
|
2015-12-11 08:09:09 +00:00
|
|
|
gcloud compute instance-groups managed \
|
|
|
|
set-instance-template "${group}" \
|
|
|
|
--template "$template_name" \
|
|
|
|
--zone "${ZONE}" \
|
|
|
|
--project "${PROJECT}" || true;
|
|
|
|
done
|
2014-09-23 22:54:27 +00:00
|
|
|
|
2015-06-01 15:59:12 +00:00
|
|
|
gcloud compute instance-templates delete \
|
|
|
|
--project "${PROJECT}" \
|
|
|
|
--quiet \
|
2015-09-28 23:22:13 +00:00
|
|
|
"$tmp_template_name" || true
|
2015-06-01 15:59:12 +00:00
|
|
|
fi
|
|
|
|
}
|
2014-09-23 22:54:27 +00:00
|
|
|
|
2015-06-01 15:59:12 +00:00
|
|
|
# Push binaries to kubernetes master
|
|
|
|
function push-master {
|
2015-04-17 17:58:26 +00:00
|
|
|
echo "Updating master metadata ..."
|
Change GCE to use standalone Saltstack config:
Change provisioning to pass all variables to both master and node. Run
Salt in a masterless setup on all nodes ala
http://docs.saltstack.com/en/latest/topics/tutorials/quickstart.html,
which involves ensuring Salt daemon is NOT running after install. Kill
Salt master install. And fix push to actually work in this new flow.
As part of this, the GCE Salt config no longer has access to the Salt
mine, which is primarily obnoxious for two reasons: - The minions
can't use Salt to see the master: this is easily fixed by static
config. - The master can't see the list of all the minions: this is
fixed temporarily by static config in util.sh, but later, by other
means (see
https://github.com/GoogleCloudPlatform/kubernetes/issues/156, which
should eventually remove this direction).
As part of it, flatten all of cluster/gce/templates/* into
configure-vm.sh, using a single, separate piece of YAML to drive the
environment variables, rather than constantly rewriting the startup
script.
2015-03-02 22:38:58 +00:00
|
|
|
write-master-env
|
2015-04-17 17:58:26 +00:00
|
|
|
add-instance-metadata-from-file "${KUBE_MASTER}" "kube-env=${KUBE_TEMP}/master-kube-env.yaml" "startup-script=${KUBE_ROOT}/cluster/gce/configure-vm.sh"
|
|
|
|
|
2015-06-01 15:59:12 +00:00
|
|
|
echo "Pushing to master (log at ${OUTPUT}/push-${KUBE_MASTER}.log) ..."
|
|
|
|
cat ${KUBE_ROOT}/cluster/gce/configure-vm.sh | gcloud compute ssh --ssh-flag="-o LogLevel=quiet" --project "${PROJECT}" --zone "${ZONE}" "${KUBE_MASTER}" --command "sudo bash -s -- --push" &> ${OUTPUT}/push-"${KUBE_MASTER}".log
|
|
|
|
}
|
|
|
|
|
|
|
|
# Push binaries to kubernetes node
|
|
|
|
function push-node() {
|
|
|
|
node=${1}
|
|
|
|
|
|
|
|
echo "Updating node ${node} metadata... "
|
|
|
|
add-instance-metadata-from-file "${node}" "kube-env=${KUBE_TEMP}/node-kube-env.yaml" "startup-script=${KUBE_ROOT}/cluster/gce/configure-vm.sh"
|
|
|
|
|
|
|
|
echo "Start upgrading node ${node} (log at ${OUTPUT}/push-${node}.log) ..."
|
|
|
|
cat ${KUBE_ROOT}/cluster/gce/configure-vm.sh | gcloud compute ssh --ssh-flag="-o LogLevel=quiet" --project "${PROJECT}" --zone "${ZONE}" "${node}" --command "sudo bash -s -- --push" &> ${OUTPUT}/push-"${node}".log
|
|
|
|
}
|
|
|
|
|
|
|
|
# Push binaries to kubernetes cluster
|
|
|
|
function kube-push {
|
2015-12-15 22:50:41 +00:00
|
|
|
# Disable this until it's fixed.
|
|
|
|
# See https://github.com/kubernetes/kubernetes/issues/17397
|
|
|
|
echo "./cluster/kube-push.sh is currently not supported in GCE."
|
|
|
|
echo "Please use ./cluster/gce/upgrade.sh."
|
|
|
|
exit 1
|
|
|
|
|
2015-06-01 15:59:12 +00:00
|
|
|
prepare-push true
|
2014-07-14 17:50:04 +00:00
|
|
|
|
2015-06-01 15:59:12 +00:00
|
|
|
push-master
|
2014-07-14 17:50:04 +00:00
|
|
|
|
2015-11-24 03:04:40 +00:00
|
|
|
for (( i=0; i<${#NODE_NAMES[@]}; i++)); do
|
|
|
|
push-node "${NODE_NAMES[$i]}" &
|
2015-06-01 15:59:12 +00:00
|
|
|
done
|
2016-01-11 23:23:21 +00:00
|
|
|
|
|
|
|
kube::util::wait-for-jobs || {
|
2016-01-22 22:42:32 +00:00
|
|
|
echo -e "${color_red}Some commands failed.${color_norm}" >&2
|
2016-01-11 23:23:21 +00:00
|
|
|
}
|
Change GCE to use standalone Saltstack config:
Change provisioning to pass all variables to both master and node. Run
Salt in a masterless setup on all nodes ala
http://docs.saltstack.com/en/latest/topics/tutorials/quickstart.html,
which involves ensuring Salt daemon is NOT running after install. Kill
Salt master install. And fix push to actually work in this new flow.
As part of this, the GCE Salt config no longer has access to the Salt
mine, which is primarily obnoxious for two reasons: - The minions
can't use Salt to see the master: this is easily fixed by static
config. - The master can't see the list of all the minions: this is
fixed temporarily by static config in util.sh, but later, by other
means (see
https://github.com/GoogleCloudPlatform/kubernetes/issues/156, which
should eventually remove this direction).
As part of it, flatten all of cluster/gce/templates/* into
configure-vm.sh, using a single, separate piece of YAML to drive the
environment variables, rather than constantly rewriting the startup
script.
2015-03-02 22:38:58 +00:00
|
|
|
|
|
|
|
# TODO(zmerlynn): Re-create instance-template with the new
|
|
|
|
# node-kube-env. This isn't important until the node-ip-range issue
|
|
|
|
# is solved (because that's blocking automatic dynamic nodes from
|
2015-04-23 14:41:56 +00:00
|
|
|
# working). The node-kube-env has to be composed with the KUBELET_TOKEN
|
Generate a token for kube-proxy.
Tested on GCE.
Includes untested modifications for AWS and Vagrant.
No changes for any other distros.
Probably will work on other up-to-date providers
but beware. Symptom would be that service proxying
stops working.
1. Generates a token kube-proxy in AWS, GCE, and Vagrant setup scripts.
1. Distributes the token via salt-overlay, and salt to /var/lib/kube-proxy/kubeconfig
1. Changes kube-proxy args:
- use the --kubeconfig argument
- changes --master argument from http://MASTER:7080 to https://MASTER
- http -> https
- explicit port 7080 -> implied 443
Possible ways this might break other distros:
Mitigation: there is an default empty kubeconfig file.
If the distro does not populate the salt-overlay, then
it should get the empty, which parses to an empty
object, which, combined with the --master argument,
should still work.
Mitigation:
- azure: Special case to use 7080 in
- rackspace: way out of date, so don't care.
- vsphere: way out of date, so don't care.
- other distros: not using salt.
2015-04-24 16:27:11 +00:00
|
|
|
# and KUBE_PROXY_TOKEN. Ideally we would have
|
2015-08-06 01:08:26 +00:00
|
|
|
# http://issue.k8s.io/3168
|
Change GCE to use standalone Saltstack config:
Change provisioning to pass all variables to both master and node. Run
Salt in a masterless setup on all nodes ala
http://docs.saltstack.com/en/latest/topics/tutorials/quickstart.html,
which involves ensuring Salt daemon is NOT running after install. Kill
Salt master install. And fix push to actually work in this new flow.
As part of this, the GCE Salt config no longer has access to the Salt
mine, which is primarily obnoxious for two reasons: - The minions
can't use Salt to see the master: this is easily fixed by static
config. - The master can't see the list of all the minions: this is
fixed temporarily by static config in util.sh, but later, by other
means (see
https://github.com/GoogleCloudPlatform/kubernetes/issues/156, which
should eventually remove this direction).
As part of it, flatten all of cluster/gce/templates/* into
configure-vm.sh, using a single, separate piece of YAML to drive the
environment variables, rather than constantly rewriting the startup
script.
2015-03-02 22:38:58 +00:00
|
|
|
# implemented before then, though, so avoiding this mess until then.
|
2014-07-14 17:50:04 +00:00
|
|
|
|
|
|
|
echo
|
2014-09-29 20:11:31 +00:00
|
|
|
echo "Kubernetes cluster is running. The master is running at:"
|
|
|
|
echo
|
|
|
|
echo " https://${KUBE_MASTER_IP}"
|
|
|
|
echo
|
2015-04-28 05:39:39 +00:00
|
|
|
echo "The user name and password to use is located in ~/.kube/config"
|
2014-07-14 17:50:04 +00:00
|
|
|
echo
|
|
|
|
}
|
|
|
|
|
2014-09-23 22:54:27 +00:00
|
|
|
# -----------------------------------------------------------------------------
|
|
|
|
# Cluster specific test helpers used from hack/e2e-test.sh
|
|
|
|
|
|
|
|
# Execute prior to running tests to build a release if required for env.
|
|
|
|
#
|
|
|
|
# Assumed Vars:
|
2014-10-03 21:58:49 +00:00
|
|
|
# KUBE_ROOT
|
2014-07-14 17:50:04 +00:00
|
|
|
function test-build-release {
|
|
|
|
# Make a release
|
2014-10-06 20:25:27 +00:00
|
|
|
"${KUBE_ROOT}/build/release.sh"
|
2014-07-14 17:50:04 +00:00
|
|
|
}
|
|
|
|
|
2014-09-23 22:54:27 +00:00
|
|
|
# Execute prior to running tests to initialize required structure. This is
|
2014-12-09 23:07:54 +00:00
|
|
|
# called from hack/e2e.go only when running -up (it is run after kube-up).
|
2014-09-23 22:54:27 +00:00
|
|
|
#
|
|
|
|
# Assumed vars:
|
|
|
|
# Variables from config.sh
|
2014-07-14 17:50:04 +00:00
|
|
|
function test-setup {
|
|
|
|
# Detect the project into $PROJECT if it isn't set
|
|
|
|
detect-project
|
|
|
|
|
2014-10-23 00:49:40 +00:00
|
|
|
# Open up port 80 & 8080 so common containers on minions can be reached
|
2015-03-02 18:15:34 +00:00
|
|
|
# TODO(roberthbailey): Remove this once we are no longer relying on hostPorts.
|
2015-06-11 09:39:22 +00:00
|
|
|
local start=`date +%s`
|
2014-11-25 18:32:27 +00:00
|
|
|
gcloud compute firewall-rules create \
|
2014-10-23 00:49:40 +00:00
|
|
|
--project "${PROJECT}" \
|
2015-11-24 03:06:00 +00:00
|
|
|
--target-tags "${NODE_TAG}" \
|
2015-05-25 07:46:24 +00:00
|
|
|
--allow tcp:80,tcp:8080 \
|
2014-10-23 00:49:40 +00:00
|
|
|
--network "${NETWORK}" \
|
2015-11-24 03:06:00 +00:00
|
|
|
"${NODE_TAG}-${INSTANCE_PREFIX}-http-alt" 2> /dev/null || true
|
2015-06-11 09:39:22 +00:00
|
|
|
# As there is no simple way to wait longer for this operation we need to manually
|
|
|
|
# wait some additional time (20 minutes altogether).
|
2016-02-01 20:30:45 +00:00
|
|
|
while ! gcloud compute firewall-rules describe --project "${PROJECT}" "${NODE_TAG}-${INSTANCE_PREFIX}-http-alt" 2> /dev/null; do
|
|
|
|
if [[ $(($start + 1200)) -lt `date +%s` ]]; then
|
|
|
|
echo -e "${color_red}Failed to create firewall ${NODE_TAG}-${INSTANCE_PREFIX}-http-alt in ${PROJECT}" >&2
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
sleep 5
|
2015-06-11 09:39:22 +00:00
|
|
|
done
|
2015-05-23 02:39:40 +00:00
|
|
|
|
|
|
|
# Open up the NodePort range
|
|
|
|
# TODO(justinsb): Move to main setup, if we decide whether we want to do this by default.
|
2015-06-11 09:39:22 +00:00
|
|
|
start=`date +%s`
|
2015-05-23 02:39:40 +00:00
|
|
|
gcloud compute firewall-rules create \
|
|
|
|
--project "${PROJECT}" \
|
2015-11-24 03:06:00 +00:00
|
|
|
--target-tags "${NODE_TAG}" \
|
2015-05-23 02:39:40 +00:00
|
|
|
--allow tcp:30000-32767,udp:30000-32767 \
|
|
|
|
--network "${NETWORK}" \
|
2015-11-24 03:06:00 +00:00
|
|
|
"${NODE_TAG}-${INSTANCE_PREFIX}-nodeports" 2> /dev/null || true
|
2015-06-11 09:39:22 +00:00
|
|
|
# As there is no simple way to wait longer for this operation we need to manually
|
|
|
|
# wait some additional time (20 minutes altogether).
|
2016-02-01 20:30:45 +00:00
|
|
|
while ! gcloud compute firewall-rules describe --project "${PROJECT}" "${NODE_TAG}-${INSTANCE_PREFIX}-nodeports" 2> /dev/null; do
|
|
|
|
if [[ $(($start + 1200)) -lt `date +%s` ]]; then
|
|
|
|
echo -e "${color_red}Failed to create firewall ${NODE_TAG}-${INSTANCE_PREFIX}-nodeports in ${PROJECT}" >&2
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
sleep 5
|
2015-06-11 09:39:22 +00:00
|
|
|
done
|
2014-07-14 17:50:04 +00:00
|
|
|
}
|
|
|
|
|
2014-12-09 23:07:54 +00:00
|
|
|
# Execute after running tests to perform any required clean-up. This is called
|
|
|
|
# from hack/e2e.go
|
2014-07-14 17:50:04 +00:00
|
|
|
function test-teardown {
|
2014-12-09 23:07:54 +00:00
|
|
|
detect-project
|
2014-07-14 17:50:04 +00:00
|
|
|
echo "Shutting down test cluster in background."
|
2014-11-25 18:32:27 +00:00
|
|
|
gcloud compute firewall-rules delete \
|
2014-10-06 20:25:27 +00:00
|
|
|
--project "${PROJECT}" \
|
2014-11-25 18:32:27 +00:00
|
|
|
--quiet \
|
2015-11-24 03:06:00 +00:00
|
|
|
"${NODE_TAG}-${INSTANCE_PREFIX}-http-alt" || true
|
2015-05-23 02:39:40 +00:00
|
|
|
gcloud compute firewall-rules delete \
|
|
|
|
--project "${PROJECT}" \
|
|
|
|
--quiet \
|
2015-11-24 03:06:00 +00:00
|
|
|
"${NODE_TAG}-${INSTANCE_PREFIX}-nodeports" || true
|
2014-11-25 18:32:27 +00:00
|
|
|
"${KUBE_ROOT}/cluster/kube-down.sh"
|
2014-07-14 17:50:04 +00:00
|
|
|
}
|
2014-10-10 05:38:00 +00:00
|
|
|
|
|
|
|
# SSH to a node by name ($1) and run a command ($2).
|
|
|
|
function ssh-to-node {
|
|
|
|
local node="$1"
|
|
|
|
local cmd="$2"
|
2015-04-21 22:27:38 +00:00
|
|
|
# Loop until we can successfully ssh into the box
|
2015-01-29 23:50:46 +00:00
|
|
|
for try in $(seq 1 5); do
|
2015-04-22 21:19:15 +00:00
|
|
|
if gcloud compute ssh --ssh-flag="-o LogLevel=quiet" --project "${PROJECT}" --zone="${ZONE}" "${node}" --command "echo test > /dev/null"; then
|
2015-01-29 23:50:46 +00:00
|
|
|
break
|
|
|
|
fi
|
2015-04-21 22:27:38 +00:00
|
|
|
sleep 5
|
2015-01-29 23:50:46 +00:00
|
|
|
done
|
2015-04-21 22:27:38 +00:00
|
|
|
# Then actually try the command.
|
|
|
|
gcloud compute ssh --ssh-flag="-o LogLevel=quiet" --project "${PROJECT}" --zone="${ZONE}" "${node}" --command "${cmd}"
|
2014-10-10 05:38:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
# Restart the kube-proxy on a node ($1)
|
|
|
|
function restart-kube-proxy {
|
2015-08-10 23:59:00 +00:00
|
|
|
if [[ "${OS_DISTRIBUTION}" == "trusty" ]]; then
|
|
|
|
ssh-to-node "$1" "sudo initctl restart kube-proxy"
|
|
|
|
else
|
|
|
|
ssh-to-node "$1" "sudo /etc/init.d/kube-proxy restart"
|
|
|
|
fi
|
2014-10-10 05:38:00 +00:00
|
|
|
}
|
2014-11-06 19:35:33 +00:00
|
|
|
|
2015-03-04 20:34:02 +00:00
|
|
|
# Restart the kube-apiserver on a node ($1)
|
2015-02-11 21:41:42 +00:00
|
|
|
function restart-apiserver {
|
2015-04-22 22:21:13 +00:00
|
|
|
ssh-to-node "$1" "sudo docker ps | grep /kube-apiserver | cut -d ' ' -f 1 | xargs sudo docker kill"
|
2015-02-11 21:41:42 +00:00
|
|
|
}
|
|
|
|
|
2014-11-11 19:03:07 +00:00
|
|
|
# Perform preparations required to run e2e tests
|
|
|
|
function prepare-e2e() {
|
|
|
|
detect-project
|
|
|
|
}
|