Skip to content

Commit

Permalink
further fixes
Browse files Browse the repository at this point in the history
Signed-off-by: RishabhKodes <rishabhbhandari6@gmail.com>
  • Loading branch information
RishabhKodes authored and kksat committed Sep 23, 2024
1 parent cf1590a commit 121e58a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions bicep.makefile
Original file line number Diff line number Diff line change
Expand Up @@ -82,12 +82,12 @@ oc-login: ## Login with oc to existing ARO cluster
-p "$(shell az aro list-credentials --name ${ARO_CLUSTER_NAME} --resource-group ${ARO_RESOURCE_GROUP} --query 'kubeadminPassword' -o tsv)"

.PHONY: aro-resource-group-delete
resource-group-delete: ## Delete the Azure resource group
aro-resource-group-delete: ## Delete the Azure resource group
$(call required-environment-variables,ARO_RESOURCE_GROUP)
az group delete --name ${ARO_RESOURCE_GROUP} --yes --no-wait

.PHONY: aro-delete
aro-delete: ## Delete the ARO cluster
.PHONY: aro-delete-cluster
aro-delete-cluster: ## Delete the ARO cluster
$(call required-environment-variables,ARO_RESOURCE_GROUP ARO_CLUSTER_NAME)
az aro delete --name ${ARO_CLUSTER_NAME} --resource-group ${ARO_RESOURCE_GROUP} --yes --no-wait

Expand Down

0 comments on commit 121e58a

Please sign in to comment.