Skip to content

Commit

Permalink
Issue #45: Fix yaml violations
Browse files Browse the repository at this point in the history
  • Loading branch information
SonOfLope committed Feb 17, 2024
1 parent 5884bc9 commit e97a9cf
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions apply-terraform.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,11 @@ stages:
scriptType: "bash"
scriptLocation: "inlineScript"
inlineScript: |
az aks get-credentials --name $(aks-name) --resource-group $(aks-resource-group) --admin --file ~/.kube/config
az aks get-credentials \
--name $(aks-name) \
--resource-group $(aks-resource-group) \
--admin \
--file ~/.kube/config
echo "AKS credentials configured for kubectl"
- task: DownloadSecureFile@1
Expand Down Expand Up @@ -97,7 +101,11 @@ stages:
scriptType: "bash"
scriptLocation: "inlineScript"
inlineScript: |
az aks get-credentials --name $(aks-name) --resource-group $(aks-resource-group) --admin --file ~/.kube/config
az aks get-credentials \
--name $(aks-name) \
--resource-group $(aks-resource-group) \
--admin \
--file ~/.kube/config
echo "AKS credentials configured for kubectl"
- task: DownloadSecureFile@1
Expand Down

0 comments on commit e97a9cf

Please sign in to comment.