From a026244d5aa105968ea88a1e155d2ef8d77c58fc Mon Sep 17 00:00:00 2001 From: Ryan Richard Date: Fri, 3 Jan 2025 15:08:19 -0800 Subject: [PATCH] add echo statement job to remove orphaned AKS clusters --- pipelines/shared-tasks/remove-orphaned-aks-clusters/task.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/pipelines/shared-tasks/remove-orphaned-aks-clusters/task.sh b/pipelines/shared-tasks/remove-orphaned-aks-clusters/task.sh index 2dd3a5081..11f9a3a1f 100755 --- a/pipelines/shared-tasks/remove-orphaned-aks-clusters/task.sh +++ b/pipelines/shared-tasks/remove-orphaned-aks-clusters/task.sh @@ -39,6 +39,7 @@ fi cat all-resources.json | jq -r ".value.[] | select(.type == \"Microsoft.ContainerService/managedClusters\") | select(.id | contains(\"/resourceGroups/${AZURE_RESOURCE_GROUP}/\")) | \"\(.name) \(.createdTime)\"" >all-clusters.txt +echo echo "Found all clusters in expected resource group:" cat all-clusters.txt echo