Skip to content

Commit

Permalink
fix: add missing option to the AKS e2e tests (cloudnative-pg#4451)
Browse files Browse the repository at this point in the history
Since May 2024 a new option is required to create an AKS cluster:
'--allow-preview true'

Closes cloudnative-pg#4450

Signed-off-by: Jonathan Gonzalez V <jonathan.gonzalez@enterprisedb.com>
Signed-off-by: Niccolò Fei <niccolo.fei@enterprisedb.com>
Co-authored-by: Niccolò Fei <niccolo.fei@enterprisedb.com>
Signed-off-by: Douglass Kirkley <dkirkley@eitccorp.com>
  • Loading branch information
2 people authored and Douglass Kirkley committed Jun 11, 2024
1 parent 3d9a208 commit a218099
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/continuous-delivery.yml
Original file line number Diff line number Diff line change
Expand Up @@ -827,7 +827,7 @@ jobs:
timeout_minutes: 10
max_attempts: 3
command: |
az extension add --name aks-preview
az extension add --allow-preview true --name aks-preview
az account set --subscription ${{ secrets.AZURE_SUBSCRIPTION }}
AZURE_STORAGE_ACCOUNT="${{ github.run_number }}${{ env.E2E_SUFFIX }}"
Expand Down Expand Up @@ -938,7 +938,7 @@ jobs:
timeout_minutes: 10
max_attempts: 3
command: |
az extension add --name aks-preview
az extension add --allow-preview true --name aks-preview
az account set --subscription ${{ secrets.AZURE_SUBSCRIPTION }}
# name of the AKS cluster
Expand Down Expand Up @@ -1092,6 +1092,7 @@ jobs:
name: Clean up
if: always()
run: |
az extension add --allow-preview true --name monitor-control-service
az account set --subscription ${{ secrets.AZURE_SUBSCRIPTION }}
attempt=1
max_attempts=3
Expand Down

0 comments on commit a218099

Please sign in to comment.