From d6e96ea06dfa7746fd36cc666f555c71b9204a96 Mon Sep 17 00:00:00 2001 From: Jeremi Piotrowski Date: Tue, 4 Jul 2023 11:27:47 +0200 Subject: [PATCH] tests/integration: Use AzureLinux instead of Mariner as OSSKU value, to get rid of this warning when creating the AKS cluster: WARNING: The osSKU "AzureLinux" should be used going forward instead of "CBLMariner" or "Mariner". The osSKUs "CBLMariner" and "Mariner" will eventually be deprecated. Signed-off-by: Jeremi Piotrowski --- tests/integration/gha-run.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/gha-run.sh b/tests/integration/gha-run.sh index 8fb6c14fa4..6abdafae2e 100755 --- a/tests/integration/gha-run.sh +++ b/tests/integration/gha-run.sh @@ -38,7 +38,7 @@ function create_cluster() { -s "Standard_D4s_v5" \ --node-count 1 \ --generate-ssh-keys \ - $([ "${KATA_HOST_OS}" = "cbl-mariner" ] && echo "--os-sku mariner --workload-runtime KataMshvVmIsolation") + $([ "${KATA_HOST_OS}" = "cbl-mariner" ] && echo "--os-sku AzureLinux --workload-runtime KataMshvVmIsolation") } function install_bats() {