From 5d05cdfacf29ceebe899b993c1800d0970672fcc Mon Sep 17 00:00:00 2001 From: Jack Francis Date: Mon, 19 Apr 2021 13:00:21 -0700 Subject: [PATCH] test: add containerd no outbound test scenario (#4371) --- .../no_outbound_containerd.json | 58 +++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100644 test/e2e/test_cluster_configs/no_outbound_containerd.json diff --git a/test/e2e/test_cluster_configs/no_outbound_containerd.json b/test/e2e/test_cluster_configs/no_outbound_containerd.json new file mode 100644 index 0000000000..f05fbb17a6 --- /dev/null +++ b/test/e2e/test_cluster_configs/no_outbound_containerd.json @@ -0,0 +1,58 @@ +{ + "env": {}, + "options": { + "allowedOrchestratorVersions": ["1.16", "1.17", "1.18", "1.19"] + }, + "apiModel": { + "apiVersion": "vlabs", + "properties": { + "masterProfile": { + "count": 1, + "dnsPrefix": "", + "vmSize": "Standard_D2_v3" + }, + "agentPoolProfiles": [ + { + "name": "pool1604vhd", + "count": 1, + "vmSize": "Standard_D2_v3", + "availabilityProfile": "VirtualMachineScaleSets", + "distro": "aks-ubuntu-16.04" + }, + { + "name": "pool1804vhd", + "count": 1, + "vmSize": "Standard_D2_v3", + "availabilityProfile": "VirtualMachineScaleSets", + "distro": "aks-ubuntu-18.04" + }, + { + "name": "poolwinvhd", + "count": 1, + "vmSize": "Standard_D2_v3", + "availabilityProfile": "VirtualMachineScaleSets", + "osType": "Windows" + } + ], + "linuxProfile": { + "adminUsername": "azureuser", + "ssh": { + "publicKeys": [ + { + "keyData": "" + } + ] + } + }, + "windowsProfile": { + "adminUsername": "azureuser", + "adminPassword": "replacepassword1234$", + "enableAutomaticUpdates": false, + "sshEnabled": true + }, + "featureFlags": { + "BlockOutboundInternet": true + } + } + } +}