diff --git a/openappstack/cluster.py b/openappstack/cluster.py
index b124b0845ad3bd144e8150f97e9458d92b8edbee..7a36b03809c37cdb64ace1a851ebcdb33dc1b592 100644
--- a/openappstack/cluster.py
+++ b/openappstack/cluster.py
@@ -4,9 +4,11 @@ import base64
 import logging
 import os
 import sys
-import yaml
+
 import greenhost_cloud
+import yaml
 from kubernetes import client, config
+
 from openappstack import ansible
 
 CLUSTER_PATH = os.path.join(os.getcwd(), 'clusters')
@@ -117,7 +119,7 @@ class Cluster:
             image=self.disk_image_id)
         droplet_id = droplet['droplet']['id']
         log.info('Created droplet id: %s', droplet_id)
-        greenhost_cloud.wait_for_state(droplet_id, 'running')
+        greenhost_cloud.wait_for_state(droplet_id, 'active')
         self.set_info_by_droplet_id(droplet_id)
 
     def set_info_by_droplet_id(self, droplet_id):