blob: 6d58010a96247a0b017aedae3b77259da104da7d [file] [log] [blame]
Zack Williamscfb6be02018-09-25 15:17:43 -07001#!/usr/bin/env bash
2
3# Copyright 2018-present Open Networking Foundation
4#
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
16
17# wait_for_pods.sh
18# waits for all kubernetes pods to complete before exiting, optionally only
19# pods in a specific namespace passed as first argument
20# inspired by similar scripts in Kolla-Kubernetes and Openstack Helm
21
22set -e -o pipefail
23fail_wfp=0
24
25# Set these to configure maximum timeout, and interval for checks
26PODS_TIMEOUT=${PODS_TIMEOUT:-600}
27CHECK_INTERVAL=${CHECK_INTERVAL:-5}
28KUBECTL_ARGS=${KUBECTL_ARGS:-}
29
30# use namespace if passed as first arg, or "all" for all namespaces
31if [ ! -z "$1" ]
32then
33 if [[ "$1" == "all" ]]
34 then
35 KUBECTL_ARGS+=" --all-namespaces"
36 else
37 KUBECTL_ARGS+=" --namespace=$1"
38 fi
39fi
40set -u
41
42# calculate timeout time
43START_TIME=$(date +%s)
44END_TIME=$((START_TIME + PODS_TIMEOUT))
45
46echo "wait_for_pods.sh - Waiting up to ${PODS_TIMEOUT} seconds for all Kubernetes pods to be ready"
47echo "Number printed is number of jobs/pods/containers waiting to be ready"
48
49prev_total_unready=0
50
51while true; do
52 NOW=$(date +%s)
53
54 # handle timeout without completion
55 if [ "$NOW" -gt "$END_TIME" ]
56 then
57 echo "Pods/Containers/Jobs not ready before timeout of ${PODS_TIMEOUT} seconds"
58 fail_wfp=1
59 break
60 fi
61
62 # get list of uncompleted items with jsonpath, then count them with wc
63 # ref: https://kubernetes.io/docs/reference/kubectl/jsonpath/
64 # jsonpath is picky about string vs comparison quoting, so may need to
65 # disable SC2026 for these lines. SC2086 allows for multiple args.
66
67 # shellcheck disable=SC2026,SC2086
68 pending_pods=$(kubectl get pods ${KUBECTL_ARGS} -o=jsonpath='{range .items[?(@.status.phase=="Pending")]}{.metadata.name}{"\n"}{end}')
69 # check for empty string before counting lines, echo adds a newline
70 if [ -z "$pending_pods" ]; then
71 pending_pod_count=0
72 else
73 pending_pod_count=$( echo "$pending_pods" | wc -l)
74 fi
75
76 # shellcheck disable=SC2026,SC2086
77 unready_containers=$(kubectl get pods ${KUBECTL_ARGS} -o=jsonpath='{range .items[?(@.status.phase=="Running")]}{range .status.containerStatuses[?(@.ready==false)]}{.name}: {.ready}{"\n"}{end}{end}')
78 if [ -z "$unready_containers" ]; then
79 unready_container_count=0
80 else
81 unready_container_count=$(echo "$unready_containers" | wc -l)
82 fi
83
84 # shellcheck disable=SC2026,SC2086
85 active_jobs=$(kubectl get jobs $KUBECTL_ARGS -o=jsonpath='{range .items[?(@.status.active=='1')]}{.metadata.name}{"\n"}{end}')
86 if [ -z "$active_jobs" ]; then
87 active_job_count=0
88 else
89 active_job_count=$(echo "$active_jobs" | wc -l)
90 fi
91
92 total_unready=$((pending_pod_count + unready_container_count + active_job_count))
93
94 # if everything is ready, print runtime and break
95 if [ "$total_unready" -eq 0 ]
96 then
97 runtime=$((NOW - START_TIME))
98 echo ""
99 echo "All pods ready in $runtime seconds"
100 break
101 fi
102
103 # deal with changes in number of jobs
104 if [ "$total_unready" -ne "$prev_total_unready" ]
105 then
106 echo ""
107 echo "Change in unready pods - Pending Pods: $pending_pod_count, Unready Containers: $unready_container_count, Active Jobs: $active_job_count"
108 fi
109 prev_total_unready=$total_unready
110
111 # print number of unready pods every $CHECK_INTERVAL
112 echo -n "$total_unready "
113 sleep "$CHECK_INTERVAL"
114done
115
116exit ${fail_wfp}