Skip to content

Commit

Permalink
qa/cephadm: add check that iscsi daemon /etc/hosts matches host /etc/…
Browse files Browse the repository at this point in the history
…hosts

To make sure we aren't being affected by any podman introduced
changes to the /etc/hosts file and test that we're properly
mounting /etc/hosts in our daemon containers

Signed-off-by: Adam King <adking@redhat.com>
  • Loading branch information
adk3798 committed Mar 27, 2023
1 parent dd8627b commit 5493e2d
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 0 deletions.
Expand Up @@ -18,3 +18,4 @@ tasks:
clients:
client.0:
- cephadm/test_iscsi_pids_limit.sh
- cephadm/test_iscsi_etc_hosts.sh
21 changes: 21 additions & 0 deletions qa/workunits/cephadm/test_iscsi_etc_hosts.sh
@@ -0,0 +1,21 @@
#!/bin/bash

# checks if the container and host's /etc/hosts files match
# Necessary to avoid potential bugs caused by podman making
# edits to /etc/hosts file in the container
# exits with code 1 if host and iscsi container /etc/hosts do no match

set -ex

ISCSI_DAEMON=$(sudo /home/ubuntu/cephtest/cephadm ls | jq -r '.[] | select(.service_name == "iscsi.foo") | .name')
sudo /home/ubuntu/cephtest/cephadm enter --name $ISCSI_DAEMON -- cat /etc/hosts > iscsi_daemon_etc_hosts.txt
if cmp --silent /etc/hosts iscsi_daemon_etc_hosts.txt; then
echo "Daemon and host /etc/hosts files successfully matched"
else
echo "ERROR: /etc/hosts on host did not match /etc/hosts in the iscsi container!"
echo "Host /etc/hosts:"
cat /etc/hosts
echo "Iscsi container /etc/hosts:"
cat iscsi_daemon_etc_hosts.txt
exit 1
fi

0 comments on commit 5493e2d

Please sign in to comment.