mirror of
https://github.com/clearlinux/cloud-native-setup.git
synced 2026-09-06 13:51:33 +00:00
Signed-off-by: Morales Quispe, Marcela <marcela.morales.quispe@intel.com>
412 lines
11 KiB
Bash
Executable File
412 lines
11 KiB
Bash
Executable File
#!/bin/bash
|
|
# Copyright (c) 2019 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
set -e
|
|
|
|
# Pull in some common, useful, items
|
|
SCRIPT_PATH=$(dirname "$(readlink -f "$0")")
|
|
source "${SCRIPT_PATH}/../lib/common.bash"
|
|
source "${SCRIPT_PATH}/common.bash"
|
|
|
|
LABELVALUE=${LABELVALUE:-scale}
|
|
|
|
pod_command="[\"tail\", \"-f\", \"/dev/null\"]"
|
|
|
|
# Set some default metrics env vars
|
|
TEST_ARGS="runtime=${RUNTIME}"
|
|
TEST_NAME="k8s scaling"
|
|
|
|
# $1 is the launch time in seconds this pod/container took to start up.
|
|
# $2 is the number of pod/containers under test
|
|
grab_stats() {
|
|
local launch_time_ms=$1
|
|
local n_pods=$2
|
|
local cpu_idle=()
|
|
local mem_free=()
|
|
local total_mem_used=0
|
|
|
|
info "And grab some stats"
|
|
|
|
local date_json="$(cat << EOF
|
|
"date": {
|
|
"ns": $(date +%s%N),
|
|
"Date": "$(date -u +"%Y-%m-%dT%T.%3N")"
|
|
}
|
|
EOF
|
|
)"
|
|
metrics_json_add_array_fragment "$date_json"
|
|
|
|
local pods_json="$(cat << EOF
|
|
"n_pods": {
|
|
"Result": ${n_pods},
|
|
"Units" : "int"
|
|
}
|
|
EOF
|
|
)"
|
|
metrics_json_add_array_fragment "$pods_json"
|
|
|
|
local launch_json="$(cat << EOF
|
|
"launch_time": {
|
|
"Result": $launch_time_ms,
|
|
"Units" : "ms"
|
|
}
|
|
EOF
|
|
)"
|
|
metrics_json_add_array_fragment "$launch_json"
|
|
|
|
# start the node utilization array
|
|
metrics_json_start_nested_array
|
|
|
|
# grab pods in the stats daemonset
|
|
# use 3 for the file descriptor rather than stdin otherwise the sh commands
|
|
# in the middle will read the rest of stdin
|
|
while read -u 3 name node; do
|
|
# look for taint that prevents scheduling
|
|
local noschedule=false
|
|
local t_match_values=$(kubectl get node ${node} -o json | jq 'select(.spec.taints) | .spec.taints[].effect == "NoSchedule"')
|
|
for v in $t_match_values; do
|
|
if [[ $v == true ]]; then
|
|
noschedule=true
|
|
break
|
|
fi
|
|
done
|
|
# Tell mpstat to measure over a short period, not only so we get slightly de-noised data, but also
|
|
# if you don't tell it the period, you will get the avg since boot, which is not what we want.
|
|
local cpu_idle=$(kubectl exec -ti $name -- sh -c "mpstat -u 3 1 | tail -1 | awk '{print \$11}'" | sed 's/\r//')
|
|
local mem_free=$(kubectl exec -ti $name -- sh -c "free | tail -2 | head -1 | awk '{print \$4}'" | sed 's/\r//')
|
|
local inode_free=$(kubectl exec -ti $name -- sh -c "df -i | awk '/^overlay/ {print \$4}'" | sed 's/\r//')
|
|
|
|
info "idle [$cpu_idle] free [$mem_free] launch [$launch_time_ms] node [$node] inodes_free [$inode_free]"
|
|
|
|
# Annoyingly, it seems sometimes once in a while we don't get an answer!
|
|
# We should really retry, but for now, make the json valid at least
|
|
cpu_idle=${cpu_idle:-0}
|
|
mem_free=${mem_free:-0}
|
|
inode_free=${inode_free:-0}
|
|
|
|
# If this is the 0 node instance, store away the base memory value
|
|
if [ $n_pods -eq 0 ]; then
|
|
node_basemem[$node]=$mem_free
|
|
node_baseinode[$node]=$inode_free
|
|
fi
|
|
|
|
local mem_used=$((node_basemem[$node]-mem_free))
|
|
local inode_used=$((node_baseinode[$node]-inode_free))
|
|
# Only account for memory usage on schedulable nodes
|
|
if [ $noschedule == false ]; then
|
|
total_mem_used=$((total_mem_used+mem_used))
|
|
fi
|
|
|
|
local util_json="$(cat << EOF
|
|
{
|
|
"node": "${node}",
|
|
"noschedule": "${noschedule}",
|
|
"cpu_idle": {
|
|
"Result": ${cpu_idle},
|
|
"Units" : "%"
|
|
},
|
|
"mem_free": {
|
|
"Result": ${mem_free},
|
|
"Units" : "kb"
|
|
},
|
|
"mem_used": {
|
|
"Result": ${mem_used},
|
|
"Units" : "kb"
|
|
},
|
|
"inode_free": {
|
|
"Result": ${inode_free}
|
|
},
|
|
"inode_used": {
|
|
"Result": ${inode_used}
|
|
}
|
|
}
|
|
EOF
|
|
)"
|
|
|
|
metrics_json_add_nested_array_element "$util_json"
|
|
|
|
done 3< <(kubectl get pods --selector name=stats-pods -o json | jq -r '.items[] | "\(.metadata.name) \(.spec.nodeName)"')
|
|
|
|
metrics_json_end_nested_array "node_util"
|
|
|
|
# start the new pods array
|
|
metrics_json_start_nested_array
|
|
|
|
# for the first call to grab stats, there are no new pods
|
|
# so we need to fill in with NA (R specific value) in matching
|
|
# dimension to the rest of the calls to grab_stats, so $STEP items
|
|
if [[ ${#new_pods[@]} == 0 ]]; then
|
|
for i in $STEP; do
|
|
local new_pod_json="$(cat << EOF
|
|
{
|
|
"pod_name": "NA",
|
|
"node": "NA"
|
|
}
|
|
EOF
|
|
)"
|
|
metrics_json_add_nested_array_element "$new_pod_json"
|
|
done
|
|
else
|
|
local maxelem=$(( ${#new_pods[@]} - 1 ))
|
|
for index in $(seq 0 $maxelem); do
|
|
local node=$(kubectl get pod ${new_pods[$index]} -o json | jq -r '"\(.spec.nodeName)"')
|
|
local new_pod_json="$(cat << EOF
|
|
{
|
|
"pod_name": "${new_pods[$index]}",
|
|
"node": "${node}"
|
|
}
|
|
EOF
|
|
)"
|
|
metrics_json_add_nested_array_element "$new_pod_json"
|
|
done
|
|
fi
|
|
metrics_json_end_nested_array "launched_pods"
|
|
|
|
# And store off the total memory consumed across all nodes, and the pod/Gb value
|
|
if [ $n_pods -eq 0 ]; then
|
|
local pods_per_gb=0
|
|
else
|
|
local pods_per_gb=$(bc -l <<< "scale=2; ($total_mem_used/1024) / $n_pods")
|
|
fi
|
|
local mem_json="$(cat << EOF
|
|
"memory": {
|
|
"consumed": {
|
|
"Result": ${total_mem_used},
|
|
"Units": "Kb"
|
|
},
|
|
"pods_per_gb": {
|
|
"Result": ${pods_per_gb}
|
|
}
|
|
}
|
|
EOF
|
|
)"
|
|
metrics_json_add_array_fragment "$mem_json"
|
|
|
|
metrics_json_close_array_element
|
|
}
|
|
|
|
init() {
|
|
info "Initialising"
|
|
|
|
local cmds=("bc" "jq")
|
|
check_cmds "${cmds[@]}"
|
|
|
|
info "Checking Kubernetes accessible"
|
|
local worked=$( kubectl get nodes > /dev/null 2>&1 && echo $? || echo $? )
|
|
if [ "$worked" != 0 ]; then
|
|
die "kubectl failed to get nodes"
|
|
fi
|
|
|
|
info $(get_num_nodes) "Kubernetes nodes in 'Ready' state found"
|
|
# We could check we have just the one node here - right now this is a single node
|
|
# test!! - because, our stats gathering is rudimentry, as k8s does not provide
|
|
# a nice way to do it (unless you want to parse 'descibe nodes')
|
|
# Have a read of https://github.com/kubernetes/kubernetes/issues/25353
|
|
|
|
# FIXME - check the node(s) can run enough pods - check 'max-pods' in the
|
|
# kubelet config - from 'kubectl describe node -o json' ?
|
|
|
|
k8s_api_init
|
|
|
|
# Launch our stats gathering pod
|
|
kubectl apply -f ${SCRIPT_PATH}/${stats_pod}.yaml
|
|
kubectl rollout status --timeout=${wait_time}s daemonset/${stats_pod}
|
|
|
|
# FIXME - we should probably 'warm up' the cluster with the container image(s) we will
|
|
# use for testing, otherwise the download time will likely be included in the first pod
|
|
# boot time.
|
|
|
|
# And now we can set up our results storage then...
|
|
metrics_json_init "k8s"
|
|
save_config
|
|
}
|
|
|
|
save_config(){
|
|
metrics_json_start_array
|
|
|
|
local json="$(cat << EOF
|
|
{
|
|
"testname": "${TEST_NAME}",
|
|
"NUM_PODS": ${NUM_PODS},
|
|
"STEP": ${STEP},
|
|
"wait_time": ${wait_time},
|
|
"delete_wait_time": ${delete_wait_time},
|
|
"settle_time": ${settle_time}
|
|
}
|
|
EOF
|
|
)"
|
|
metrics_json_add_array_element "$json"
|
|
metrics_json_end_array "Config"
|
|
}
|
|
|
|
run() {
|
|
info "Running test"
|
|
|
|
trap cleanup EXIT QUIT KILL
|
|
|
|
metrics_json_start_array
|
|
|
|
# grab starting stats before launching workload pods
|
|
grab_stats 0 0
|
|
|
|
for reqs in $(seq ${STEP} ${STEP} ${NUM_PODS}); do
|
|
info "Testing replicas ${reqs} of ${NUM_PODS}"
|
|
# Generate the next yaml file
|
|
|
|
local runtime_command
|
|
if [ -n "$RUNTIME" ]; then
|
|
runtime_command="s|@RUNTIMECLASS@|${RUNTIME}|g"
|
|
else
|
|
runtime_command="/@RUNTIMECLASS@/d"
|
|
fi
|
|
|
|
local input_template
|
|
local generated_file
|
|
if [ "$use_api" != "no" ]; then
|
|
input_template=$input_json
|
|
generated_file=$generated_json
|
|
else
|
|
input_template=$input_yaml
|
|
generated_file=$generated_yaml
|
|
fi
|
|
|
|
sed -e "s|@REPLICAS@|${reqs}|g" \
|
|
-e $runtime_command \
|
|
-e "s|@DEPLOYMENT@|${deployment}|g" \
|
|
-e "s|@LABEL@|${LABEL}|g" \
|
|
-e "s|@LABELVALUE@|${LABELVALUE}|g" \
|
|
-e "s|@GRACE@|${grace}|g" \
|
|
-e "s#@PODCOMMAND@#${pod_command}#g" \
|
|
< ${input_template} > ${generated_file}
|
|
|
|
# get list of workload pods before launching another one
|
|
local pods_before=$(kubectl get pods --selector ${LABEL}=${LABELVALUE} -o json | jq -r '.items[] | "\(.metadata.name)"')
|
|
|
|
info "Applying changes"
|
|
local start_time=$(date +%s%N)
|
|
if [ "$use_api" != "no" ]; then
|
|
# If this is the first launch of the deploy, we need to use a different URL form.
|
|
if [ $reqs == ${STEP} ]; then
|
|
curl -s ${API_ADDRESS}:${API_PORT}/apis/apps/v1/namespaces/default/deployments -XPOST -H 'Content-Type: application/json' -d@${generated_file} > /dev/null
|
|
else
|
|
curl -s ${API_ADDRESS}:${API_PORT}/apis/apps/v1/namespaces/default/deployments/${deployment} -XPATCH -H 'Content-Type:application/strategic-merge-patch+json' -d@${generated_file} > /dev/null
|
|
fi
|
|
else
|
|
kubectl apply -f ${generated_file}
|
|
fi
|
|
|
|
#cmd="kubectl get pods | grep busybox | grep Completed"
|
|
kubectl rollout status --timeout=${wait_time}s deployment/${deployment}
|
|
local end_time=$(date +%s%N)
|
|
local total_milliseconds=$(( (end_time - start_time) / 1000000 ))
|
|
info "Took $total_milliseconds ms ($end_time - $start_time)"
|
|
|
|
# grab list of workload pods after
|
|
local pods_after=$(kubectl get pods --selector ${LABEL}=${LABELVALUE} -o json | jq -r '.items[] | "\(.metadata.name)"')
|
|
find_unique_pods "${pods_after}" "${pods_before}"
|
|
|
|
sleep ${settle_time}
|
|
grab_stats $total_milliseconds $reqs
|
|
done
|
|
}
|
|
|
|
cleanup() {
|
|
info "Cleaning up"
|
|
|
|
# First try to save any results we got
|
|
metrics_json_end_array "BootResults"
|
|
|
|
kubectl delete daemonset --wait=true --timeout=${delete_wait_time}s "${stats_pod}" || true
|
|
local start_time=$(date +%s%N)
|
|
kubectl delete deployment --wait=true --timeout=${delete_wait_time}s ${deployment} || true
|
|
for x in $(seq 1 ${delete_wait_time}); do
|
|
local npods=$(kubectl get pods -l=${LABEL}=${LABELVALUE} -o=name | wc -l)
|
|
if [ $npods -eq 0 ]; then
|
|
echo "All pods have terminated at cycle $x"
|
|
local alldied=true
|
|
break;
|
|
fi
|
|
sleep 1
|
|
done
|
|
local end_time=$(date +%s%N)
|
|
local total_milliseconds=$(( (end_time - start_time) / 1000000 ))
|
|
if [ -z "$alldied" ]; then
|
|
echo "ERROR: Not all pods died!"
|
|
fi
|
|
info "Delete Took $total_milliseconds ms ($end_time - $start_time)"
|
|
|
|
local json="$(cat << EOF
|
|
"Delete": {
|
|
"Result": ${total_milliseconds},
|
|
"Units" : "ms"
|
|
}
|
|
EOF
|
|
)"
|
|
|
|
metrics_json_add_fragment "$json"
|
|
metrics_json_save
|
|
|
|
k8s_api_shutdown
|
|
}
|
|
|
|
show_vars()
|
|
{
|
|
echo -e "\nEnvironment variables:"
|
|
echo -e "\tName (default)"
|
|
echo -e "\t\tDescription"
|
|
echo -e "\tTEST_NAME (${TEST_NAME})"
|
|
echo -e "\t\tCan be set to over-ride the default JSON results filename"
|
|
echo -e "\tNUM_PODS (${NUM_PODS})"
|
|
echo -e "\t\tNumber of pods to launch"
|
|
echo -e "\tSTEP (${STEP})"
|
|
echo -e "\t\tNumber of pods to launch per cycle"
|
|
echo -e "\twait_time (${wait_time})"
|
|
echo -e "\t\tSeconds to wait for pods to become ready"
|
|
echo -e "\tdelete_wait_time (${delete_wait_time})"
|
|
echo -e "\t\tSeconds to wait for all pods to be deleted"
|
|
echo -e "\tsettle_time (${settle_time})"
|
|
echo -e "\t\tSeconds to wait after pods ready before taking measurements"
|
|
echo -e "\tuse_api (${use_api})"
|
|
echo -e "\t\tspecify yes or no to use the API to launch pods"
|
|
echo -e "\tgrace (${grace})"
|
|
echo -e "\t\tspecify the grace period in seconds for workload pod termination"
|
|
}
|
|
|
|
help()
|
|
{
|
|
usage=$(cat << EOF
|
|
Usage: $0 [-h] [options]
|
|
Description:
|
|
Launch a series of workloads in a linear manner and take memory metric measurements
|
|
after each launch.
|
|
Options:
|
|
-h, Help page.
|
|
EOF
|
|
)
|
|
echo "$usage"
|
|
show_vars
|
|
}
|
|
|
|
main() {
|
|
|
|
local OPTIND
|
|
while getopts "h" opt;do
|
|
case ${opt} in
|
|
h)
|
|
help
|
|
exit 0;
|
|
;;
|
|
esac
|
|
done
|
|
shift $((OPTIND-1))
|
|
init
|
|
run
|
|
# cleanup will happen at exit due to the shell 'trap' we registered
|
|
# cleanup
|
|
}
|
|
|
|
main "$@"
|