-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Sync ml-dev changes to main #9469
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
Merged
Merged
Changes from 10 commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
1c67554
Compute connect port 22 path fix (#9082)
PratibhaShrivastav18 166e63d
CLI v2 2.39.0 (Version/changelog changes) (#9089)
PratibhaShrivastav18 a693b88
Pylint fix + History update (#9143)
PratibhaShrivastav18 73d1a91
Sync ml-dev with Main (#9365)
achauhan-scc 17780d0
Deployment templates - CLI (#9320)
kshitij-microsoft 84e3af6
Sync with main (#9374)
achauhan-scc 8c59ee4
ML Ext changes to ml Dev branch (#9376)
achauhan-scc 9953070
Adding integration tests for DT, preview feature and command update t…
kshitij-microsoft c29354c
Drop Python 3.7, 3.8, 3.9 support from ml extension (#9447)
saanikaguptamicrosoft a2492b3
Merge upstream/main into ml-dev
PratibhaShrivastav18 264ecb5
Update src/machinelearningservices/azext_mlv2/manual/_help/_deploymen…
necusjz acbd711
Update CHANGELOG for Azure Machine Learning CLI v2.41.0
lavakumarrepala ba4268c
Bump version to 2.41.0
lavakumarrepala f1f0a3a
Update azure-ai-ml version to 1.31.0
lavakumarrepala 8042c42
Update CHANGELOG.rst
lavakumarrepala cd14346
Update CHANGELOG for Azure ML CLI v2.41.0
lavakumarrepala 6e29711
Merge pull request #1 from lavakumarrepala/patch-1
PratibhaShrivastav18 4d3d445
bug fix
PratibhaShrivastav18 8905f72
Merge pull request #2 from PratibhaShrivastav18/shrivastavp/bug_fix_dt
PratibhaShrivastav18 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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
42 changes: 42 additions & 0 deletions
42
...vices/azext_mlv2/tests/test_configs/deployment_template/deployment_template_advanced.yaml
This file contains hidden or 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,42 @@ | ||
| name: advanced-deployment-template | ||
| version: "2" | ||
| description: Advanced deployment template with multiple endpoints for testing | ||
| tags: | ||
| environment: development | ||
| team: ml-platform | ||
| cost-center: "12345" | ||
| endpoints: | ||
| - name: primary | ||
| traffic: 80 | ||
| deployment: | ||
| model: | ||
| name: advanced-model | ||
| version: "2" | ||
| environment: | ||
| name: advanced-env | ||
| version: "1" | ||
| instance_count: 3 | ||
| instance_type: Standard_DS3_v2 | ||
| code_configuration: | ||
| scoring_script: score.py | ||
| code: src/ | ||
| scale_settings: | ||
| type: target_utilization | ||
| target_utilization_percentage: 70 | ||
| min_instances: 1 | ||
| max_instances: 10 | ||
| - name: canary | ||
| traffic: 20 | ||
| deployment: | ||
| model: | ||
| name: canary-model | ||
| version: "1" | ||
| environment: | ||
| name: canary-env | ||
| version: "1" | ||
| instance_count: 1 | ||
| instance_type: Standard_DS2_v2 | ||
| code_configuration: | ||
| scoring_script: score_canary.py | ||
| scale_settings: | ||
| type: default |
15 changes: 15 additions & 0 deletions
15
...rvices/azext_mlv2/tests/test_configs/deployment_template/deployment_template_minimal.yaml
This file contains hidden or 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,15 @@ | ||
| name: minimal-deployment-template | ||
| version: "1" | ||
| description: Minimal deployment template for basic testing | ||
| endpoints: | ||
| - name: simple | ||
| traffic: 100 | ||
| deployment: | ||
| model: | ||
| name: simple-model | ||
| version: "1" | ||
| environment: | ||
| name: simple-env | ||
| version: "1" | ||
| instance_count: 1 | ||
| instance_type: Standard_DS1_v2 |
This file contains hidden or 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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The formatting of the changelog entry is inconsistent with the existing entries. Lines 1-2 should follow the same format as line 5, where the version number is included after the header. The current format has "(unreleased)" without a version number, followed by changes, then a date header. Consider restructuring to match the established pattern where date headers are followed by version headers.