Skip to content

Commit fe4987b

Browse files
committed
resolve conflict
2 parents 3ceff36 + 21e9783 commit fe4987b

File tree

256 files changed

+36408
-22477
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

256 files changed

+36408
-22477
lines changed

.github/CODEOWNERS

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# See for instructions on this file https://help.github.com/articles/about-codeowners/
22

3-
/linter_exclusions.yml @kairu-ms @fengzhou-msft
3+
/linter_exclusions.yml @kairu-ms @wangzelin007
44

5-
/src/index.json @fengzhou-msft @qwordy @houk-ms @kairu-ms @jsntcy @Juliehzl @jiasli @zhoxing-ms @evelyn-ys @xfz11 @08nholloway @necusjz
5+
/src/index.json @kairu-ms @jsntcy @jiasli @zhoxing-ms @evelyn-ys @necusjz @wangzelin007
66

77
/src/footprint/ @jonunezd @Diego-Perez-Botero
88

@@ -22,7 +22,7 @@
2222

2323
/src/eventgrid/ @kalyanaj
2424

25-
/src/storage-preview/ @evelyn_ys @calvinhzy
25+
/src/storage-preview/ @evelyn-ys @calvinhzy
2626

2727
/src/dev-spaces/ @amsoedal
2828

@@ -112,9 +112,9 @@
112112

113113
/src/blueprint/ @fengzhou-msft
114114

115-
/src/storage-blob-preview/ @evelyn_ys @calvinhzy
115+
/src/storage-blob-preview/ @evelyn-ys @calvinhzy
116116

117-
/src/logic/ @jsntcy @kairu
117+
/src/logic/ @jsntcy @kairu-ms
118118

119119
/src/hardware-security-modules/ @bquantump
120120

@@ -226,7 +226,7 @@
226226

227227
/src/image-gallery/ @zhoxing-ms
228228

229-
/src/keyvault-preview/ @evelyn_ys @calvinhzy
229+
/src/keyvault-preview/ @evelyn-ys @calvinhzy
230230

231231
/src/init/ @zhoxing-ms @HuangYT2000
232232

@@ -327,3 +327,7 @@
327327
/src/acat @qinqingxu @Sherylueen @yongxin-ms @wh-alice
328328

329329
/src/zones/ @nielsams
330+
331+
/src/vme/ @caoyihua
332+
333+
/src/carbon/ @itiinani

.github/policies/resourceManagement.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3335,12 +3335,12 @@ configuration:
33353335
- addLabel:
33363336
label: Auto-Assign
33373337
- requestReview:
3338-
reviewer: AllyW
3338+
reviewer: wangzelin007
33393339
- requestReview:
33403340
reviewer: yonzhan
33413341
- assignTo:
33423342
users:
3343-
- AllyW
3343+
- wangzelin007
33443344
description: '[machine learning] Auto assign labels and reviewers based on PR title/description.'
33453345
- if:
33463346
- payloadType: Issues

src/acrcssc/HISTORY.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22
33
Release History
44
===============
5+
1.0.0b2
6+
++++++
7+
* Bug fix: Updated to allow for az login when the account doesn't have any active subscriptions
8+
59

610
1.0.0b1
711
++++++

src/acrcssc/azext_acrcssc/templates/task/cssc_scan_image.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ steps:
4545
if [ "$eoslValue" = "true" ]; then \
4646
echo "PATCHING will be skipped as EOSL is $eoslValue for image {{.Values.SOURCE_REPOSITORY}}:{{.Values.SOURCE_IMAGE_TAG}}"; \
4747
elif [ $vulCount -gt 0 ]; then \
48-
az login --identity; \
48+
az login --identity --allow-no-subscriptions; \
4949
echo "Total OS vulnerabilities found -> $vulCount"; \
5050
echo "PATCHING task scheduled for image {{.Values.SOURCE_REPOSITORY}}:{{.Values.SOURCE_IMAGE_TAG}}, new patch tag will be {{.Values.SOURCE_IMAGE_ORIGINAL_TAG}}-{{.Values.SOURCE_IMAGE_NEWPATCH_TAG}}"; \
5151
az acr task run --name $patchimagetask --registry $RegistryName --set SOURCE_REPOSITORY={{.Values.SOURCE_REPOSITORY}} --set SOURCE_IMAGE_TAG={{.Values.SOURCE_IMAGE_ORIGINAL_TAG}} --set SOURCE_IMAGE_NEWPATCH_TAG={{.Values.SOURCE_IMAGE_NEWPATCH_TAG}} --no-wait; \

src/acrcssc/azext_acrcssc/templates/task/cssc_trigger_workflow.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ steps:
2323
- ACR_EXPERIMENTAL_CSSC=true
2424
- cmd: bash -c 'sed -n "/^Listing/,/^Matches/ {/^Listing/b;/^Matches/b;/^Repo/b;p}" filterReposWithPatchTags.txt' > filteredReposAndTags.txt
2525
- cmd: bash -c 'sed -n "/^Configured Tag Convention:/p" filterReposWithPatchTags.txt' > tagConvention.txt
26-
- cmd: az login --identity
26+
- cmd: az login --identity --allow-no-subscriptions
2727
- id: scan-and-schedule-patch
2828
timeout: 1800
2929
cmd: |

src/acrcssc/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
from distutils import log as logger
1414
logger.warn("Wheel is not available, disabling bdist_wheel hook")
1515

16-
VERSION = '1.0.0b1'
16+
VERSION = '1.0.0b2'
1717

1818
# The full list of classifiers is available at
1919
# https://pypi.python.org/pypi?%3Aaction=list_classifiers

src/aks-preview/HISTORY.rst

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,14 @@ To release a new version, please select a new version number (usually plus 1 to
1212
Pending
1313
+++++++
1414

15-
18.0.0b3
15+
18.0.0b4
1616
+++++++
1717
* Create managed namespace commands `az aks namespace add/update/show/list/delete/get-credentials`
1818

19+
18.0.0b3
20+
+++++++
21+
* Add basic lb sku migration support `az aks update --load-balancer-sku standard`
22+
1923
18.0.0b2
2024
+++++++
2125
* Vendor new SDK and bump API version to 2025-03-02-preview.

src/aks-preview/azext_aks_preview/_help.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -816,6 +816,10 @@
816816
- name: --tier
817817
type: string
818818
short-summary: Specify SKU tier for managed clusters. '--tier standard' enables a standard managed cluster service with a financially backed SLA. '--tier free' changes a standard managed cluster to a free one.
819+
- name: --load-balancer-sku
820+
type: string
821+
short-summary: Azure Load Balancer SKU selection for your cluster. only standard is accepted.
822+
long-summary: Upgrade to Standard Azure Load Balancer SKU for your AKS cluster.
819823
- name: --load-balancer-managed-outbound-ip-count
820824
type: int
821825
short-summary: Load balancer managed outbound IP count.
@@ -1267,6 +1271,8 @@
12671271
text: az aks update --disable-cluster-autoscaler -g MyResourceGroup -n MyManagedCluster
12681272
- name: Update min-count or max-count for cluster autoscaler.
12691273
text: az aks update --update-cluster-autoscaler --min-count 1 --max-count 10 -g MyResourceGroup -n MyManagedCluster
1274+
- name: Upgrade load balancer sku to standard
1275+
text: az aks update --load-balancer-sku standard -g MyResourceGroup -n MyManagedCluster
12701276
- name: Update a kubernetes cluster with standard SKU load balancer to use two AKS created IPs for the load balancer outbound connection usage.
12711277
text: az aks update -g MyResourceGroup -n MyManagedCluster --load-balancer-managed-outbound-ip-count 2
12721278
- name: Update a kubernetes cluster with standard SKU load balancer to use the provided public IPs for the load balancer outbound connection usage.

src/aks-preview/azext_aks_preview/_params.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1025,6 +1025,11 @@ def load_arguments(self, _):
10251025
# managed cluster paramerters
10261026
c.argument("disable_local_accounts", action="store_true")
10271027
c.argument("enable_local_accounts", action="store_true")
1028+
c.argument(
1029+
"load_balancer_sku",
1030+
arg_type=get_enum_type([CONST_LOAD_BALANCER_SKU_STANDARD]),
1031+
validator=validate_load_balancer_sku,
1032+
)
10281033
c.argument("load_balancer_managed_outbound_ip_count", type=int)
10291034
c.argument(
10301035
"load_balancer_outbound_ips", validator=validate_load_balancer_outbound_ips

src/aks-preview/azext_aks_preview/custom.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -763,6 +763,7 @@ def aks_update(
763763
tags=None,
764764
disable_local_accounts=False,
765765
enable_local_accounts=False,
766+
load_balancer_sku=None,
766767
load_balancer_managed_outbound_ip_count=None,
767768
load_balancer_outbound_ips=None,
768769
load_balancer_outbound_ip_prefixes=None,

0 commit comments

Comments
 (0)