2014-07-28 00:01:52 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
# Copyright 2014 Google Inc. All rights reserved.
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
|
|
|
|
# This command checks that the built commands can function together for
|
|
|
|
# simple scenarios. It does not require Docker so it can run in travis.
|
|
|
|
|
2014-10-06 20:25:27 +00:00
|
|
|
set -o errexit
|
|
|
|
set -o nounset
|
|
|
|
set -o pipefail
|
|
|
|
|
2014-10-03 21:58:49 +00:00
|
|
|
KUBE_ROOT=$(dirname "${BASH_SOURCE}")/..
|
|
|
|
source "${KUBE_ROOT}/hack/util.sh"
|
|
|
|
source "${KUBE_ROOT}/hack/config-go.sh"
|
2014-07-28 00:01:52 +00:00
|
|
|
|
|
|
|
function cleanup()
|
|
|
|
{
|
2014-10-06 20:25:27 +00:00
|
|
|
[[ -n ${APISERVER_PID-} ]] && kill ${APISERVER_PID} 1>&2 2>/dev/null
|
|
|
|
[[ -n ${CTLRMGR_PID-} ]] && kill ${CTLRMGR_PID} 1>&2 2>/dev/null
|
|
|
|
[[ -n ${KUBELET_PID-} ]] && kill ${KUBELET_PID} 1>&2 2>/dev/null
|
|
|
|
[[ -n ${PROXY_PID-} ]] && kill ${PROXY_PID} 1>&2 2>/dev/null
|
|
|
|
[[ -n ${ETCD_PID-} ]] && kill ${ETCD_PID} 1>&2 2>/dev/null
|
2014-07-28 00:01:52 +00:00
|
|
|
rm -rf ${ETCD_DIR} 1>&2 2>/dev/null
|
2014-08-23 01:12:16 +00:00
|
|
|
echo
|
2014-07-28 00:01:52 +00:00
|
|
|
echo "Complete"
|
|
|
|
}
|
|
|
|
|
|
|
|
trap cleanup EXIT SIGINT
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
# Start etcd
|
2014-08-23 01:12:16 +00:00
|
|
|
start_etcd
|
2014-07-28 00:01:52 +00:00
|
|
|
|
2014-08-23 01:12:16 +00:00
|
|
|
ETCD_HOST=${ETCD_HOST:-127.0.0.1}
|
|
|
|
ETCD_PORT=${ETCD_PORT:-4001}
|
|
|
|
API_PORT=${API_PORT:-8080}
|
|
|
|
API_HOST=${API_HOST:-127.0.0.1}
|
|
|
|
KUBELET_PORT=${KUBELET_PORT:-10250}
|
2014-10-22 01:21:44 +00:00
|
|
|
CTLRMGR_PORT=${CTLRMGR_PORT:-10252}
|
2014-09-23 14:08:46 +00:00
|
|
|
GO_OUT=${KUBE_TARGET}/bin
|
2014-07-28 00:01:52 +00:00
|
|
|
|
2014-10-06 01:24:19 +00:00
|
|
|
# Check kubectl
|
|
|
|
out=$("${GO_OUT}/kubectl")
|
|
|
|
echo kubectl: $out
|
2014-07-28 00:01:52 +00:00
|
|
|
|
|
|
|
# Start kubelet
|
|
|
|
${GO_OUT}/kubelet \
|
2014-08-23 01:12:16 +00:00
|
|
|
--etcd_servers="http://${ETCD_HOST}:${ETCD_PORT}" \
|
2014-07-28 00:01:52 +00:00
|
|
|
--hostname_override="127.0.0.1" \
|
|
|
|
--address="127.0.0.1" \
|
|
|
|
--port="$KUBELET_PORT" 1>&2 &
|
|
|
|
KUBELET_PID=$!
|
|
|
|
|
|
|
|
wait_for_url "http://127.0.0.1:${KUBELET_PORT}/healthz" "kubelet: "
|
|
|
|
|
|
|
|
# Start apiserver
|
|
|
|
${GO_OUT}/apiserver \
|
|
|
|
--address="127.0.0.1" \
|
|
|
|
--port="${API_PORT}" \
|
2014-08-23 01:12:16 +00:00
|
|
|
--etcd_servers="http://${ETCD_HOST}:${ETCD_PORT}" \
|
2014-10-10 22:19:23 +00:00
|
|
|
--kubelet_port=${KUBELET_PORT} \
|
2014-09-18 23:03:34 +00:00
|
|
|
--portal_net="10.0.0.0/24" 1>&2 &
|
2014-07-28 00:01:52 +00:00
|
|
|
APISERVER_PID=$!
|
|
|
|
|
|
|
|
wait_for_url "http://127.0.0.1:${API_PORT}/healthz" "apiserver: "
|
|
|
|
|
2014-10-22 01:21:44 +00:00
|
|
|
# Start controller manager
|
|
|
|
${GO_OUT}/controller-manager \
|
|
|
|
--machines="127.0.0.1" \
|
|
|
|
--master="127.0.0.1:${API_PORT}" 1>&2 &
|
|
|
|
CTLRMGR_PID=$!
|
|
|
|
|
|
|
|
wait_for_url "http://127.0.0.1:${CTLRMGR_PORT}/healthz" "controller-manager: "
|
|
|
|
|
2014-10-06 01:24:19 +00:00
|
|
|
KUBE_CMD="${GO_OUT}/kubectl"
|
|
|
|
KUBE_FLAGS="-s http://127.0.0.1:${API_PORT} --match-server-version"
|
2014-07-28 00:01:52 +00:00
|
|
|
|
2014-10-06 01:24:19 +00:00
|
|
|
${KUBE_CMD} get pods ${KUBE_FLAGS}
|
|
|
|
echo "kubectl(pods): ok"
|
2014-07-28 00:01:52 +00:00
|
|
|
|
2014-10-06 01:24:19 +00:00
|
|
|
${KUBE_CMD} get services ${KUBE_FLAGS}
|
|
|
|
${KUBE_CMD} create -f examples/guestbook/frontend-service.json ${KUBE_FLAGS}
|
|
|
|
${KUBE_CMD} delete service frontend ${KUBE_FLAGS}
|
|
|
|
echo "kubectl(services): ok"
|
2014-07-28 00:01:52 +00:00
|
|
|
|
2014-10-06 01:24:19 +00:00
|
|
|
${KUBE_CMD} get minions ${KUBE_FLAGS}
|
|
|
|
${KUBE_CMD} get minions 127.0.0.1 ${KUBE_FLAGS}
|
|
|
|
echo "kubectl(minions): ok"
|
2014-07-28 00:01:52 +00:00
|
|
|
|
|
|
|
# Start proxy
|
|
|
|
#PROXY_LOG=/tmp/kube-proxy.log
|
|
|
|
#${GO_OUT}/proxy \
|
|
|
|
# --etcd_servers="http://127.0.0.1:${ETCD_PORT}" 1>&2 &
|
2014-07-25 19:28:20 +00:00
|
|
|
#PROXY_PID=$!
|