Very puzzling, this
diff --git a/.devcontainer/create_cluster_file.bash b/.devcontainer/create_cluster_file.bash
index 47b2d20..a611f63 100644
--- a/.devcontainer/create_cluster_file.bash
+++ b/.devcontainer/create_cluster_file.bash
@@ -35,6 +35,11 @@
 		echo "$FDB_CLUSTER_FILE_CONTENTS" > $FDB_CLUSTER_FILE
 	elif [[ -n $FDB_COORDINATOR ]]; then
 		coordinator_ip=$(getent hosts $FDB_COORDINATOR | awk {'print $1'})
+		x=$(getent hosts $FDB_COORDINATOR)
+		y=$(getent hosts fdb)
+		echo "Output of getent: ${x}"
+		echo "Output of getent raw: ${y}"
+		echo "coordinator_ip: ${coordinator_ip}"
 		if [[ -z "$coordinator_ip" ]]; then
 			echo "Failed to look up coordinator address for $FDB_COORDINATOR" 1>&2
 			exit 1