We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3e39aba + 3f58af1 commit 87c8970Copy full SHA for 87c8970
1 file changed
controller/provider/digitalocean.py
@@ -91,7 +91,7 @@ def _get_droplet_kwargs(node, conn):
91
return {
92
'name': node['id'],
93
'size_id': _get_id(conn.sizes(), params.get('size', '4GB')),
94
- 'image_id': _get_id(conn.images(show_all=False), params.get('image', 'deis-node-image')),
+ 'image_id': _get_id(conn.images(my_images=True), params.get('image', 'deis-node-image')),
95
'region_id': _get_id(conn.regions(), params.get('region', 'San Francisco 1')),
96
'ssh_key_ids': [str(_get_id(conn.all_ssh_keys(),
97
"deis-{formation}-{layer}".format(**node)))],
0 commit comments