-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add UI table with Cluster specs and action buttons (#681)
* Add UI table with RayCluster specs and action buttons * Update cpu and mem names from UI table * Merge requests-limits into single column in UI table * Enhance notebook outputs/display on button clicks * Refactor and move UI table to widgets.py file * Add unit tests for UI table functions * Add timeout and interval parameters to _delete_cluster function * Pre-select cluster if exists, and suppress widgets and outputs on creation of Cluster Object, and bug fixes * Add UI table to regression and functionality tests * Update codeflare_sdk.egg-info * Fix to hide toolbar before capturing snapshots for UI notebook tests * Add head comments to functions and add num_workers to data frame * Reformat for pre-commit checks * Revert codeflare_sdk.egg-info name
- Loading branch information
1 parent
80fabe3
commit c2eaa15
Showing
13 changed files
with
756 additions
and
43 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
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 |
---|---|---|
|
@@ -14,6 +14,7 @@ | |
get_cluster, | ||
list_all_queued, | ||
list_all_clusters, | ||
view_clusters, | ||
) | ||
|
||
from .job import RayJobClient | ||
|
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 |
---|---|---|
|
@@ -21,4 +21,8 @@ | |
list_all_clusters, | ||
) | ||
|
||
from .widgets import ( | ||
view_clusters, | ||
) | ||
|
||
from .awload import AWManager |
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
Oops, something went wrong.