-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #117 from HSF/dev
improve docker image
- Loading branch information
Showing
13 changed files
with
1,323 additions
and
66 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
name: iDDS | ||
dependencies: | ||
- python==3.6 | ||
- pip | ||
- pip: | ||
- requests # requests | ||
- SQLAlchemy # db orm | ||
- urllib3 # url connections | ||
- retrying # retrying behavior | ||
- mysqlclient # mysql python client | ||
#- web.py # web service | ||
- futures # multiple process/threads | ||
- stomp.py # Messaging broker client | ||
- cx-Oracle # Oralce client | ||
- unittest2 # unit test tool | ||
- pep8 # checks for PEP8 code style compliance | ||
- flake8 # Wrapper around PyFlakes&pep8 | ||
- pytest # python testing tool | ||
- nose # nose test tools | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
import sys | ||
|
||
from pandaclient import Client | ||
|
||
task_id = sys.argv[1] | ||
|
||
status, output = Client.retryTask(task_id) | ||
print(status) | ||
print(output) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
#!/bin/bash | ||
|
||
export IDDS_HOST=https://aipanda160.cern.ch:443/idds | ||
export IDDS_LOCAL_CONFIG_ROOT=~/.idds | ||
# export IDDS_CONFIG= | ||
export IDDS_AUTH_TYPE=oidc | ||
# export IDDS_OIDC_TOKEN=~/.idds/.token | ||
export IDDS_VO=Rubin | ||
export IDDS_AUTH_NO_VERIFY=1 | ||
|
Oops, something went wrong.