useful_scripts/debug-relations.sh

21 lines
451 B
Bash
Raw Normal View History

2021-10-12 19:24:31 +00:00
#!/bin/sh
if [ $# -ne 2 ]; then
echo "Usage: $0 unit/N relation-name (e.g. $0 ceph-mon/0 client)"
exit 1
fi
relation_ids=$(juju run --unit $1 -- relation-ids $2)
echo $relation_ids
for relation_id in $relation_ids; do
units=$(juju run --unit $1 -- relation-list -r $relation_id)
for unit in $units; do
echo -----
echo from $1 get $relation_id $unit
juju run --unit $1 -- relation-get -r $relation_id - $unit
done &
done
wait