Skip to content
This repository has been archived by the owner on Nov 30, 2021. It is now read-only.

Commit

Permalink
Merge 3f58af1 into 3e39aba
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthew Fisher committed Mar 23, 2014
2 parents 3e39aba + 3f58af1 commit 7f5ab47
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion controller/provider/digitalocean.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ def _get_droplet_kwargs(node, conn):
return {
'name': node['id'],
'size_id': _get_id(conn.sizes(), params.get('size', '4GB')),
'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')),
'region_id': _get_id(conn.regions(), params.get('region', 'San Francisco 1')),
'ssh_key_ids': [str(_get_id(conn.all_ssh_keys(),
"deis-{formation}-{layer}".format(**node)))],
Expand Down

0 comments on commit 7f5ab47

Please sign in to comment.