Skip to content

Commit

Permalink
Temporarily remove stderr check in pipeline clean up task (#1575)
Browse files Browse the repository at this point in the history
Since the clusters have been upgraded to 1.19.11 the cluster-release
task has started failing since helm is complaining about deprecated
v1beta1 ClusterRoleBindings in aad-pod-identity. Turn off the check so
the pipeline stops failing while we upgrade the aad-pod-identity
dependency.
  • Loading branch information
babbageclunk authored Jun 18, 2021
1 parent 2b2437f commit f347750
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,7 @@ devops
cover-existing.html
coverage-existing.txt
report-existing.xml
testlogs-existing.txt
testlogs-existing.txt
hack/generator
hack/generated
.git
5 changes: 4 additions & 1 deletion azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,10 @@ steps:
echo "Setting tags back to free"
az resource tag --tags 'freeforpipeline=true' -g $(AKS_CLUSTER_RG) -n $(chosenclustername) --resource-type Microsoft.ContainerService/managedClusters
workingDirectory: '$(System.DefaultWorkingDirectory)'
failOnStandardError: true
# Turn off this check until our aad-pod-identity dep is updated
# so that it's not trying to install v1beta1
# ClusterRoleBindings.
failOnStandardError: false


- task: Docker@2
Expand Down

0 comments on commit f347750

Please sign in to comment.