Skip to content

Commit 6ee6a53

Browse files
author
Matthew Fisher
committed
Merge pull request #594 from Springest/private_networking_support
Adds private networking for Digital Ocean
2 parents f98fd5e + 66c93bc commit 6ee6a53

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

provider/digitalocean.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,8 @@ def _get_droplet_kwargs(node, conn):
9595
'region_id': _get_id(conn.regions(), params.get('region', 'San Francisco 1')),
9696
'ssh_key_ids': [str(_get_id(conn.all_ssh_keys(),
9797
"deis-{formation}-{layer}".format(**node)))],
98-
'virtio': True
98+
'virtio': True,
99+
'private_networking': True
99100
}
100101

101102

requirements.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ django-guardian==1.1.1
77
django-json-field==0.5.5
88
django-yamlfield==0.5
99
djangorestframework==2.3.12
10-
dop==0.1.4
10+
#dop
11+
git+git://github.com/ahmontero/dop.git@6485d4eda8cd42dc44b3e6e5cf13d4974be0cdee
1112
gevent==1.0
1213
gunicorn==18.0
1314
paramiko==1.12.1

0 commit comments

Comments
 (0)