Skip to content
Draft
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 32 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -526,7 +526,22 @@ jobs:
- name: Print logs for failure
if: failure()
run: |
sudo snap logs microceph -n 1000
set +e
lxc list
lxc storage list
lxc storage volume list default
for c in node-wrk0 node-wrk1 node-wrk2 node-wrk3 ; do
echo "=== $c ==="
if ! lxc info "$c" >/dev/null 2>&1 ; then
echo "$c not found"
continue
fi
lxc exec "$c" -- sh -c "microceph status" || true
lxc exec "$c" -- sh -c "microceph.ceph -s" || true
lxc exec "$c" -- sh -c "microceph.ceph health detail" || true
Comment thread
sabaini marked this conversation as resolved.
Outdated
lxc exec "$c" -- sh -c "sudo snap logs microceph -n 1000" || true
lxc exec "$c" -- sh -c "sudo snap logs microceph.daemon -n 1000" || true
Comment thread
sabaini marked this conversation as resolved.
Outdated
done
Comment thread
sabaini marked this conversation as resolved.
Outdated

availability-zone-tests:
name: Availability zone crush rule testing
Expand Down Expand Up @@ -632,7 +647,22 @@ jobs:
- name: Print logs for failure
if: failure()
run: |
sudo snap logs microceph -n 1000
set +e
lxc list
lxc storage list
lxc storage volume list default
for c in node-wrk0 node-wrk1 node-wrk2 node-wrk3 ; do
echo "=== $c ==="
if ! lxc info "$c" >/dev/null 2>&1 ; then
echo "$c not found"
continue
fi
lxc exec "$c" -- sh -c "microceph status" || true
lxc exec "$c" -- sh -c "microceph.ceph -s" || true
lxc exec "$c" -- sh -c "microceph.ceph health detail" || true
Comment thread
sabaini marked this conversation as resolved.
Outdated
lxc exec "$c" -- sh -c "sudo snap logs microceph -n 1000" || true
lxc exec "$c" -- sh -c "sudo snap logs microceph.daemon -n 1000" || true
Comment thread
sabaini marked this conversation as resolved.
Outdated
done
Comment thread
sabaini marked this conversation as resolved.
Outdated

test-sequential-mon-host-refresh:
name: Regression test for sequential join mon host refresh (issue #556)
Expand Down
Loading