Fix docs somewhat, add monitoring hooks.

This commit is contained in:
Brendan Burns
2014-11-10 13:55:34 -08:00
parent 8a2954900e
commit 48498cf9bb
2 changed files with 29 additions and 8 deletions

View File

@@ -105,6 +105,20 @@ function ensure-temp-dir {
fi
}
function setup-monitoring {
if [ ${MONITORING-} ]; then
# TODO: Implement this.
echo "Monitoring not currently supported on AWS"
fi
}
function teardown-monitoring {
if [ ${MONITORING-} ]; then
# TODO: Implement this.
echo "Monitoring not currently supported on AWS"
fi
}
# Verify and find the various tar files that we are going to use on the server.
#
# Vars set:
@@ -143,12 +157,12 @@ function upload-server-tars() {
SERVER_BINARY_TAR_URL=
SALT_TAR_URL=
local project_hash
local key = $(aws configure get aws_access_key_id)
local project_hash=
local key=$(aws configure get aws_access_key_id)
if which md5 > /dev/null 2>&1; then
project_hash = $(md5 -q -s "${USER} ${key}")
project_hash=$(md5 -q -s "${USER} ${key}")
else
project_hash = $(echo -n "${USER} ${key}" | md5sum)
project_hash=$(echo -n "${USER} ${key}" | md5sum)
fi
local -r staging_bucket="kubernetes-staging-${project_hash}"