From 1688e4f3f09dec53de40d8c8a09579b6d8372912 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabiano=20Fid=C3=AAncio?= Date: Wed, 5 Apr 2023 16:02:17 +0200 Subject: [PATCH] gha: aks: Use D4s_v5 instance MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It's been pointed out that D4s_v5 instances are more powerful than the D4s_v3 ones, and have the very same price. With this in mind, let's switch to the newer machines. Fixes: #6606 Signed-off-by: Fabiano FidĂȘncio --- .github/workflows/create-aks.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/create-aks.yaml b/.github/workflows/create-aks.yaml index b2b6c76e78..cfd08f5cd6 100644 --- a/.github/workflows/create-aks.yaml +++ b/.github/workflows/create-aks.yaml @@ -27,6 +27,6 @@ jobs: az aks create \ -g "kataCI" \ -n "${{ inputs.name }}" \ - -s "Standard_D4s_v3" \ + -s "Standard_D4s_v5" \ --node-count 1 \ --generate-ssh-keys