mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-17 11:50:18 +00:00
ci: use new label for snapshot controller
with new release of snapshotter the labels are changed, this commit uses the new labels to list the snapshot controller pod. Signed-off-by: Madhu Rajanna <madhupr007@gmail.com>
This commit is contained in:
parent
89501a8865
commit
0a82f17671
@ -37,19 +37,19 @@ function install_snapshot_controller() {
|
||||
|
||||
create_or_delete_resource "create" "${namespace}"
|
||||
|
||||
pod_ready=$(kubectl_retry get pods -l app=snapshot-controller -n "${namespace}" -o jsonpath='{.items[0].status.containerStatuses[0].ready}')
|
||||
pod_ready=$(kubectl_retry get pods -l app.kubernetes.io/name=snapshot-controller -n "${namespace}" -o jsonpath='{.items[0].status.containerStatuses[0].ready}')
|
||||
INC=0
|
||||
until [[ "${pod_ready}" == "true" || $INC -gt 20 ]]; do
|
||||
sleep 10
|
||||
((++INC))
|
||||
pod_ready=$(kubectl_retry get pods -l app=snapshot-controller -n "${namespace}" -o jsonpath='{.items[0].status.containerStatuses[0].ready}')
|
||||
pod_ready=$(kubectl_retry get pods -l app.kubernetes.io/name=snapshot-controller -n "${namespace}" -o jsonpath='{.items[0].status.containerStatuses[0].ready}')
|
||||
echo "snapshotter pod status: ${pod_ready}"
|
||||
done
|
||||
|
||||
if [ "${pod_ready}" != "true" ]; then
|
||||
echo "snapshotter controller creation failed"
|
||||
kubectl_retry get pods -l app=snapshot-controller -n "${namespace}"
|
||||
kubectl_retry describe po -l app=snapshot-controller -n "${namespace}"
|
||||
kubectl_retry get pods -l app.kubernetes.io/name=snapshot-controller -n "${namespace}"
|
||||
kubectl_retry describe po -l app.kubernetes.io/name=snapshot-controller -n "${namespace}"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user