Skip to content

Commit

Permalink
Merge pull request Azure#243 from AzureArcForKubernetes/release-1.4.3
Browse files Browse the repository at this point in the history
bump k8s-extension version to 1.4.3
  • Loading branch information
bavneetsingh16 authored Jul 28, 2023
2 parents e9aebbc + e36dfad commit 2561f35
Show file tree
Hide file tree
Showing 2,120 changed files with 669,834 additions and 535,866 deletions.
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'
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'
16 changes: 15 additions & 1 deletion .github/CODEOWNERS
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,8 @@

/src/timeseriesinsights/ @jiasli

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

/src/portal/ @YalinLi0312

/src/import-export/ @xfz11
Expand Down Expand Up @@ -240,6 +242,8 @@

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

/src/containerapp-preview/ @ruslany @sanchitmehta @ebencarek @JennyLawrance @howang-ms @vinisoto @chinadragon0515 @vturecek @torosent @pagariyaalok @Juliehzl @jijohn14

/src/scvmm/ @nascarsayan

/src/spring/ @yuwzho
Expand All @@ -256,6 +260,8 @@

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

/src/new-relic/ @necusjz @ZengTaoxu

/src/nginx/ @liftr-nginx

/src/elastic-san/ @calvinhzy
Expand Down Expand Up @@ -294,4 +300,12 @@

/src/workloads/ @jsntcy

/src/self-help/ @BharathaAravind
/src/self-help/ @BharathaAravind

/src/qumulo/ @jsntcy

/src/amlfs/ @jsntcy

/src/command-change/ @allyw

/src/graphservices/ @amatukmolina
15 changes: 15 additions & 0 deletions .github/azure-client-tools-bot/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,18 @@ allowed_branches:
- "main"
auto_choose_milestone:
pr_expected_days: 7
pull_request:
comment:
- azure_pipeline:
allow_list:
- "Azure.azure-cli-extensions Breaking Change Test"
result_path: "/breaking_change_test/"
group_by_keys:
- "TestName"
- "Module"
template_path: "templates/BreakingChangeTest.handlebars"
comment_title: "Azure CLI Extensions Breaking Change Test"
init_comment: |
Validation for Breaking Change Starting...
Thanks for your contribution!
disable_check_suit: true
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{{#each this}}
<details>
<summary>{{renderStatus Status}}{{TestName}}</summary>

{{#each Items}}
><details>
> <summary>{{renderStatus Status}}{{Module}}</summary>
>
{{renderContent Content 1}}
></details>
{{/each}}
</details>
{{/each}}
Loading

0 comments on commit 2561f35

Please sign in to comment.