Skip to content

Commit

Permalink
Merge branch 'k8s-configuration' into create_flux_v1_deprecate
Browse files Browse the repository at this point in the history
  • Loading branch information
bavneetsingh16 authored Mar 20, 2024
2 parents 042532e + f1e6d35 commit f143366
Show file tree
Hide file tree
Showing 10,494 changed files with 5,432,497 additions and 1,748,718 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
50 changes: 50 additions & 0 deletions .azure-pipelines/breaking-change-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
resources:
- repo: self

trigger: none

pr:
branches:
include:
- '*'

variables:
- template: ${{ variables.Pipeline.Workspace }}/.azure-pipelines/templates/variables.yml

jobs:
- job: BreakingChangeTest
displayName: "Breaking Change Test"
pool:
name: ${{ variables.ubuntu_pool }}
steps:
- checkout: self
fetchDepth: 0
fetchTags: true
persistCredentials: true
- task: UsePythonVersion@0
displayName: 'Use Python 3.10'
inputs:
versionSpec: 3.10
- template: ${{ variables.Pipeline.Workspace }}/.azure-pipelines/templates/azdev_setup.yml
- bash: |
set -ev
. env/bin/activate
python scripts/ci/breaking_change_test.py
breakingChangeTest='false'
if [[ -f '/$(HOME)/.azdev/env_config/mnt/vss/_work/1/s/env/breaking_change_test.json' ]]; then
breakingChangeTest='true'
fi
echo "##vso[task.setvariable variable=breakingChangeTest]$breakingChangeTest"
displayName: "Breaking Change Test"
env:
PR_SRC_BRANCH: $(System.PullRequest.SourceBranch)
PR_TARGET_BRANCH: $(System.PullRequest.TargetBranch)
PULL_REQUEST_NUMBER: $(System.PullRequest.PullRequestNumber)
JOB_NAME: "breaking_change_test"
- task: PublishBuildArtifacts@1
condition: and(succeededOrFailed(), eq(variables.breakingChangeTest, 'true'))
inputs:
# /mnt/vss/.azdev/env_config/mnt/vss/_work/1/s/env/breaking_change_test.json
PathtoPublish: '/$(HOME)/.azdev/env_config/mnt/vss/_work/1/s/env/breaking_change_test.json'
ArtifactName: 'breaking_change_test'
publishLocation: 'Container'
25 changes: 25 additions & 0 deletions .azure-pipelines/templates/azdev_setup.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
parameters:
- name: CLIRepoPath
type: string
default: '../azure-cli'
- name: CLIExtensionRepoPath
type: string
default: './'
steps:
- bash: |
set -ev
python -m venv env
chmod +x env/bin/activate
source ./env/bin/activate
# clone azure-cli
git clone -q --single-branch -b dev https://github.com/Azure/azure-cli.git ../azure-cli
python -m pip install -U pip
pip install azdev
azdev --version
azdev setup -c $CLI_REPO_PATH -r $CLI_EXT_REPO_PATH --debug
pip list -v
az --version
displayName: 'azdev setup'
env:
CLI_REPO_PATH: ${{ parameters.CLIRepoPath }}
CLI_EXT_REPO_PATH: ${{ parameters.CLIExtensionRepoPath }}
4 changes: 4 additions & 0 deletions .azure-pipelines/templates/variables.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
variables:
ubuntu_pool: 'pool-ubuntu-2004'
windows_pool: 'pool-windows-2019'
ubuntu_arm64_pool: 'ubuntu-arm64-2004-pool'
21 changes: 14 additions & 7 deletions .flake8
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,20 @@
max-line-length = 120
max-complexity = 10
ignore =
E501, # line too long, it is covered by pylint
E722, # bare except, bad practice, to be removed in the future
F401, # imported but unused, too many violations, to be removed in the future
F811, # redefinition of unused, to be removed in the future
C901 # code flow is too complex, too many violations, to be removed in the future
W503 # line break before binary operator effect on readability is subjective
W504 # line break after binary operator effect on readability is subjective
# line too long, it is covered by pylint
E501
# bare except, bad practice, to be removed in the future
E722
# imported but unused, too many violations, to be removed in the future
F401
# redefinition of unused, to be removed in the future
F811
# code flow is too complex, too many violations, to be removed in the future
C901
# line break before binary operator effect on readability is subjective
W503
# line break after binary operator effect on readability is subjective
W504
exclude =
*/vendored_sdks
docs
Expand Down
94 changes: 82 additions & 12 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
Expand Up @@ -14,18 +14,22 @@

/src/subscription/ @wilcobmsft

/src/apic-extension/ @arpishahmsft

/src/alias/ @Juliehzl

/src/managementpartner/ @jeffrey-ace

/src/eventgrid/ @kalyanaj

/src/storage-preview/ @Juliehzl
/src/storage-preview/ @evelyn_ys @calvinhzy

/src/db-up/ @Juliehzl

/src/dev-spaces/ @amsoedal

/src/devcenter/ @am-lim

/src/dms-preview/ @temandr

/src/dnc/ @alegal
Expand Down Expand Up @@ -56,14 +60,18 @@

/src/front-door/ @pichandwork

/src/interactive/ @jiasli
/src/interactive/ @jiasli @zhoxing-ms @ReaNAiveD

/src/aks-preview/ @andyzhangx @andyliuliming @fumingzhang

/src/bastion/ @aavalang

/src/vm-repair/ @haagha

/src/netappfiles-preview/ @b-lefr

/src/networkcloud/ @kiall @mbashtovaya @priyamshet

/src/network-manager/ @necusjz @kairu-ms @jsntcy

/src/healthcareapis/ @fengzhou-msft @iviark
Expand All @@ -82,12 +90,14 @@

/src/ip-group/ @necusjz @kairu-ms @jsntcy

/src/connectedk8s/ @akashkeshari @alphaWizard
/src/connectedk8s/ @akashkeshari @sirireddy12

/src/storagesync/ @jsntcy

/src/maintenance/ @gautamd-ms

/src/managednetworkfabric/ @rahulm-msft

/src/ai-examples/ @mirdaki

/src/notification-hub/ @fengzhou-msft
Expand All @@ -106,7 +116,7 @@

/src/blueprint/ @fengzhou-msft

/src/storage-blob-preview/ @Juliehzl
/src/storage-blob-preview/ @evelyn_ys @calvinhzy

/src/logic/ @jsntcy @kairu

Expand All @@ -120,6 +130,8 @@

/src/timeseriesinsights/ @jiasli

/src/palo-alto-networks/ @kairu-ms @ZengTaoxu

/src/portal/ @YalinLi0312

/src/import-export/ @xfz11
Expand All @@ -140,15 +152,15 @@

/src/kusto/ @ilayr @orhasban @astauben

/src/appservice-kube/ @ebencarek @calcha @StrawnSC
/src/appservice-kube/ @ebencarek @howang-ms @Juliehzl @LaylaLiu-gmail

/src/astronomer/ @kairu-ms @ZengTaoxu

/src/custom-providers/ @jsntcy

/src/costmanagement/ @kairu-ms @jsntcy

/src/datafactory/ @kairu-ms @evelyn-ys @Juliehzl

/src/blockchain/ @jsntcy
/src/datafactory/ @kairu-ms @evelyn-ys @Juliehzl

/src/desktopvirtualization/ @changlong-liu

Expand Down Expand Up @@ -184,7 +196,7 @@

/src/offazure/ @houk-ms

/src/resource-mover/ @houk-ms
/src/resource-mover/ @houk-ms @yashjain4

/src/providerhub/ @wwendyc @vikashj

Expand Down Expand Up @@ -218,6 +230,8 @@

/src/image-gallery/ @zhoxing-ms

/src/keyvault-preview/ @evelyn_ys @calvinhzy

/src/init/ @zhoxing-ms @HuangYT2000

/src/datamigration/ @ashutoshsuman99
Expand All @@ -228,9 +242,9 @@

/src/quota/ @kairu-ms @ZengTaoxu

/src/containerapp/ @haroonf @panchagnula @StrawnSC @lil131
/src/containerapp/ @ruslany @sanchitmehta @ebencarek @JennyLawrance @howang-ms @vinisoto @chinadragon0515 @vturecek @torosent @pagariyaalok @Juliehzl @jijohn14

/src/scvmm/ @nascarsayan
/src/scvmm/ @nascarsayan @hsurana06

/src/spring/ @yuwzho

Expand All @@ -240,14 +254,70 @@

/src/fluid-relay/ @kairu-ms @necusjz @ZengTaoxu

/src/fleet/ @pdaru
/src/fleet/ @pdaru @ealianis

/src/staticwebapp/ @strawnsc

/src/traffic-collector/ @rmodh @japani @kukulkarni1

/src/new-relic/ @necusjz @ZengTaoxu

/src/nginx/ @liftr-nginx

/src/elastic-san/ @calvinhzy

/src/reservation/ @gaoyp830 @rkapso @msft-adrianma @sornaks @juhee0202

/src/scenario-guide/ @zhoxing-ms @ReaNAiveD

/src/dynatrace/ @jsntcy

/src/load/ @venkatr21

/src/adp/ @kareemshibli

/src/nsp/ @nikhilsaxena2609

/src/billing-benefits/ @gaoyp830 @rkapso @msft-adrianma @sornaks

/src/serviceconnector-passwordless/ @xfz11

/src/mobile-network/ @jsntcy

/src/automanage/ @calvinhzy

/src/voice-service/ @jsntcy

/src/confcom/ @BryceDFisher @SethHollandsworth @hgarvison @stevendongatmsft

/src/storage-mover/ @calvinhzy

/src/alb/ @jaishals

/src/aosm/ @sunnycarter

/src/managedccfs/ @msftsettiy

/src/acrquery/ @CarolineNB

/src/workloads/ @jsntcy

/src/self-help/ @BharathaAravind

/src/qumulo/ @jsntcy

/src/amlfs/ @jsntcy

/src/command-change/ @allyw

/src/graphservices/ @amatukmolina

/src/site-recovery/ @calvinhzy

/src/hdinsightonaks/ @aim-for-better @yuc-Li

/src/network-analytics/ @pikanghosh1

/src/azurelargeinstance/ @8Gitbrix

/src/k8s-runtime/ @ddadaal @HE-Xinyu
13 changes: 0 additions & 13 deletions .github/ISSUE_TEMPLATE.md

This file was deleted.

Loading

0 comments on commit f143366

Please sign in to comment.