From f347750c70aefd5166a7b88888da06ede6186257 Mon Sep 17 00:00:00 2001 From: Christian Muirhead Date: Fri, 18 Jun 2021 16:08:54 +1200 Subject: [PATCH] Temporarily remove stderr check in pipeline clean up task (#1575) 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. --- .dockerignore | 5 ++++- azure-pipelines.yml | 5 ++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/.dockerignore b/.dockerignore index 712d2c0ac3c..9507a57f49a 100644 --- a/.dockerignore +++ b/.dockerignore @@ -12,4 +12,7 @@ devops cover-existing.html coverage-existing.txt report-existing.xml -testlogs-existing.txt \ No newline at end of file +testlogs-existing.txt +hack/generator +hack/generated +.git diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 104ab891608..016da11539d 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -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