-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support of project in disks (#2960)
* add support for project names in disks * add custom project create disk test * changelog * revert usage of resolve_disk * assume there is no owner in URIs
- Loading branch information
1 parent
9db3432
commit 8251a35
Showing
37 changed files
with
455 additions
and
276 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Support projects in disk CLI commands and SDK methods. |
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
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
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
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
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
46 changes: 23 additions & 23 deletions
46
...tests/unit/formatters/ascii/TestJobOutputFormatter.test_job_with_environment[human]_0.ref
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 |
---|---|---|
@@ -1,24 +1,24 @@ | ||
Job test-job | ||
Name test-job-name | ||
Owner test-user | ||
Cluster default | ||
Description test job description | ||
Status failed (ErrorReason) | ||
Image image:test-image:sometag | ||
Command test-command | ||
Priority Normal | ||
Price (credits / hour) 15.0000 | ||
Current cost 150.0000 | ||
Resources Memory 16.8 MB | ||
CPU 0.1 | ||
TTY False | ||
Http URL http://local.host.test/ | ||
Http port 80 | ||
Http authentication True | ||
Environment ENV_NAME_1 __value1__ | ||
ENV_NAME_2 **value2** | ||
Created Sep 25 2018 at 12:28 | ||
Started Sep 25 2018 at 12:28 | ||
Finished Sep 25 2018 at 12:28 | ||
Exit code 123 | ||
Job test-job | ||
Name test-job-name | ||
Owner test-user | ||
Cluster default | ||
Description test job description | ||
Status failed (ErrorReason) | ||
Image image:/test-user/test-image:sometag | ||
Command test-command | ||
Priority Normal | ||
Price (credits / hour) 15.0000 | ||
Current cost 150.0000 | ||
Resources Memory 16.8 MB | ||
CPU 0.1 | ||
TTY False | ||
Http URL http://local.host.test/ | ||
Http port 80 | ||
Http authentication True | ||
Environment ENV_NAME_1 __value1__ | ||
ENV_NAME_2 **value2** | ||
Created Sep 25 2018 at 12:28 | ||
Started Sep 25 2018 at 12:28 | ||
Finished Sep 25 2018 at 12:28 | ||
Exit code 123 | ||
Description ErrorDesc |
Oops, something went wrong.