-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Temporarily adding the container deployment (#98)
* Added language container deployment * Updated release_droid_upload_github_release_assets.yml * [run aws tests] * Update doc/changes/changes_0.6.0.md Co-authored-by: Torsten Kilias <[email protected]> * Update release_language_container.sh Co-authored-by: Torsten Kilias <[email protected]> * Update release_language_container.sh Co-authored-by: Torsten Kilias <[email protected]> * Addressing review comments [run aws tests] * Addressing more review comments * Addressing more review comments --------- Co-authored-by: Torsten Kilias <[email protected]>
- Loading branch information
Showing
12 changed files
with
830 additions
and
243 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# SageMaker Extension 0.6.0, released 2023-12-14 | ||
|
||
Code name: Added language container deployment | ||
|
||
## Summary | ||
|
||
This release includes api and cli for language container deployment. This is now consistent with | ||
similar features of the Transformers extension. | ||
|
||
**Note**: Most of the language container deployment code will be moved eventually to the | ||
script-language-container-tool repository. | ||
|
||
### Features | ||
|
||
n/a | ||
|
||
### Bug Fixes | ||
|
||
n/a | ||
|
||
### Documentation | ||
|
||
n/a | ||
|
||
### Refactoring | ||
|
||
- #97: Improving the container deployment using the container deployer from [transformers-extension](https://github.com/exasol/transformers-extension/) |
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,28 @@ | ||
import logging | ||
import click | ||
from exasol_sagemaker_extension.deployment.deploy_cli import main as scripts_deployer_main | ||
from exasol_sagemaker_extension.deployment.language_container_deployer_cli \ | ||
import language_container_deployer_main, slc_parameter_formatters, CustomizableParameters | ||
from exasol_sagemaker_extension.deployment.sme_language_container_deployer import SmeLanguageContainerDeployer | ||
|
||
|
||
@click.group() | ||
def main(): | ||
pass | ||
|
||
|
||
slc_parameter_formatters.set_formatter(CustomizableParameters.container_url, | ||
SmeLanguageContainerDeployer.SLC_URL_FORMATTER) | ||
slc_parameter_formatters.set_formatter(CustomizableParameters.container_name, | ||
SmeLanguageContainerDeployer.SLC_NAME) | ||
|
||
main.add_command(scripts_deployer_main) | ||
main.add_command(language_container_deployer_main) | ||
|
||
|
||
if __name__ == '__main__': | ||
logging.basicConfig( | ||
format='%(asctime)s - %(module)s - %(message)s', | ||
level=logging.DEBUG) | ||
|
||
main() |
Oops, something went wrong.