Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Resurrecting Azure Execution provider #1121

Merged
merged 25 commits into from
Jul 17, 2019
Merged
Show file tree
Hide file tree
Changes from 7 commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
f876ddc
adding azure provider
benhg Jul 7, 2019
0ffc756
renaming file to be more consistent, editing __init__.py
benhg Jul 7, 2019
24060fe
changing where template is imported from to be consistent with AWS pr…
benhg Jul 7, 2019
d7ad125
fixing constructor
benhg Jul 7, 2019
339d9c4
fixing handling of existing subnets
benhg Jul 7, 2019
f290541
updating handling of existing subnets
benhg Jul 7, 2019
a298319
editing codemeta file
benhg Jul 7, 2019
1c15f44
making a bugfix for remote execution of init script
benhg Jul 9, 2019
bb29050
addressing changes requested by @benc.
benhg Jul 9, 2019
151f887
flake8 changes
benhg Jul 9, 2019
d777594
Merge branch 'master' into benhg-azure-provider
benhg Jul 9, 2019
fd48d01
fixing unhandled import error on msrestazure. Hopefully checks should…
benhg Jul 9, 2019
5a31868
removing test artifacts
benhg Jul 9, 2019
754af6f
Merge branch 'benhg-azure-provider' of https://github.com/benhg/parsl…
benhg Jul 9, 2019
0d8e224
editing mypy.ini to ignore missing msrestazure
benhg Jul 9, 2019
9abcad4
Undue spurious whitespace change in test-requirements.txt
benhg Jul 9, 2019
5d0fee0
documentation changes requested by @benclifford
benhg Jul 12, 2019
52c8726
making other small changes requested by @benclifford
benhg Jul 12, 2019
5a9982d
flake8 changes
benhg Jul 12, 2019
069c47a
Merge branch 'benhg-azure-provider' of https://github.com/benhg/parsl…
benhg Jul 12, 2019
2e0b749
Fixing handling of KeyboardInterrupt so that VMs get deleted on progr…
benhg Jul 12, 2019
6285ab7
flake8 changes
benhg Jul 12, 2019
da3d48e
Merge branch 'master' into benhg-azure-provider
benhg Jul 15, 2019
1f67cac
Merge branch 'master' into benhg-azure-provider
benclifford Jul 16, 2019
33e1f78
Merge branch 'master' into benhg-azure-provider
benclifford Jul 17, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions codemeta.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,13 @@
"givenName": "Ian",
"familyName": "Foster",
"email": "[email protected]"
},
{
"@id":"http://orcid.org/0000-0002-0762-2684",
"@type": "Person",
"givenName": "Ben",
"familyName": "Glick",
"email": "[email protected]"
}
],
"softwareRequirements": [
Expand Down
4 changes: 3 additions & 1 deletion parsl/providers/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
from parsl.providers.aws.aws import AWSProvider
from parsl.providers.googlecloud.googlecloud import GoogleCloudProvider
from parsl.providers.jetstream.jetstream import JetstreamProvider
from parsl.providers.azure.azure import AzureProvider

# Kubernetes
from parsl.providers.kubernetes.kube import KubernetesProvider
Expand All @@ -28,4 +29,5 @@
'AWSProvider',
'GoogleCloudProvider',
'JetstreamProvider',
'KubernetesProvider']
'KubernetesProvider',
'AzureProvider']
Empty file.
Loading