nodes discovering
diff --git a/nodes/fuel.py b/nodes/fuel.py
new file mode 100644
index 0000000..20390aa
--- /dev/null
+++ b/nodes/fuel.py
@@ -0,0 +1,9 @@
+import fuel_rest_api
+
+
+def discover_fuel_nodes(root_url, credentials):
+    """Discover Fuel nodes"""
+    connection = fuel_rest_api.KeystoneAuth(root_url, credentials)
+    fi = fuel_rest_api.FuelInfo(connection)
+
+    return fi.nodes
\ No newline at end of file