Skip to content

Conversation

@AllyW
Copy link
Owner

@AllyW AllyW commented Aug 27, 2024


This checklist is used to make sure that common guidelines for a pull request are followed.

Related command

General Guidelines

  • Have you run azdev style <YOUR_EXT> locally? (pip install azdev required)
  • Have you run python scripts/ci/test_index.py -q locally? (pip install wheel==0.30.0 required)
  • My extension version conforms to the Extension version schema

For new extensions:

About Extension Publish

There is a pipeline to automatically build, upload and publish extension wheels.
Once your pull request is merged into main branch, a new pull request will be created to update src/index.json automatically.
You only need to update the version information in file setup.py and historical information in file HISTORY.rst in your PR but do not modify src/index.json.

@github-actions
Copy link

Repository owner deleted a comment from github-actions bot Aug 27, 2024
Repository owner deleted a comment from github-actions bot Aug 27, 2024
Repository owner deleted a comment from github-actions bot Aug 27, 2024
Repository owner deleted a comment from github-actions bot Aug 27, 2024
Repository owner deleted a comment from github-actions bot Aug 27, 2024
@AllyW AllyW added the enhancement New feature or request label Aug 27, 2024
Repository owner deleted a comment from github-actions bot Aug 27, 2024
Repository owner deleted a comment from github-actions bot Aug 27, 2024
Repository owner deleted a comment from github-actions bot Aug 27, 2024
Repository owner deleted a comment from github-actions bot Aug 27, 2024
@AllyW AllyW removed the enhancement New feature or request label Aug 27, 2024

Guidance
++++++++
If there is no rush to release a new version, please just add a description of the modification under the *Pending* section.

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

PR Summary:

  1. Updated the VM SKU regex to include a larger set of VMs eligible for Azure Container Storage.
  2. Increased the version number from 7.0.0b7 to 7.0.0b8 in setup.py and added a new version section in the changelog.

pattern = r'standard_([a-z]+)(\d+)([a-z]*)(?:_[^_]+)*_v(\d+)'
match = re.search(pattern, vm_size.lower())
if match:
series_prefix = match.group(1)

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

  1. The updated regex pattern is more complex; clarify it with a comment explaining the logic.
  2. Instead of re.search, use re.match since the pattern is expected to match from the start.

Refinement:

# Updated pattern to handle optional segments between the size and version
pattern = r'standard_([a-z]+)(\d+)([a-z]*)(?:_[^_]+)*_v(\d+)'  
match = re.match(pattern, vm_size.lower())

VERSION = "7.0.0b8"

CLASSIFIERS = [
"Development Status :: 4 - Beta",

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The version update from "7.0.0b7" to "7.0.0b8" is appropriate for indicating the new beta release. However, this diff does not show any other changes that require refining. Ensure all functional and necessary updates are included in separate commits for clarity.

@AllyW AllyW force-pushed the main branch 2 times, most recently from 7e9bcf3 to 087db12 Compare August 30, 2024 08:14
@AllyW AllyW force-pushed the main branch 3 times, most recently from 7059eb5 to 3ab770e Compare April 3, 2025 08:21
AllyW pushed a commit that referenced this pull request Jun 3, 2025
* add pester tests for k8s-extension

* Adding CLI Configuration for DisableInformerCache Flag (#2)

This is required for our helm charts where customers can opt to change the caching behaviour during restore.

* fix testcases for nodepool image issues (#5)

* update readme and version release notes (#6)

* fix: simplify logic and enable correct recording rule groups for managed prom extension (#7)

* remove test cases specific to fork repo

---------

Co-authored-by: Bavneet Singh <[email protected]>
Co-authored-by: Mayank Aggarwal <[email protected]>
Co-authored-by: bragi92 <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants