diff --git a/test/e2e/kubernetes/cniLinux.json b/test/e2e/kubernetes/cniLinux.json new file mode 100644 index 0000000000..32090105b8 --- /dev/null +++ b/test/e2e/kubernetes/cniLinux.json @@ -0,0 +1,42 @@ +{ + "apiVersion": "vlabs", + "properties": { + "orchestratorProfile": { + "orchestratorType": "Kubernetes", + "orchestratorRelease": "1.11", + "kubernetesConfig":{ + "networkPlugin":"azure", + "networkPolicy":"azure", + "azureCNIVersion":"v1.0.16", + "azureCNIURLLinux":"" + } + }, + "masterProfile": { + "count": 1, + "dnsPrefix": "cniLinux", + "vmSize": "Standard_D2_v2" + }, + "agentPoolProfiles": [ + { + "name": "agentpool1", + "count": 3, + "vmSize": "Standard_D2_v2", + "availabilityProfile": "AvailabilitySet" + } + ], + "linuxProfile": { + "adminUsername": "azureuser", + "ssh": { + "publicKeys": [ + { + "keyData":"" + } + ] + } + }, + "servicePrincipalProfile": { + "clientId": "", + "secret": "" + } + } + } diff --git a/test/e2e/kubernetes/cniWindows.json b/test/e2e/kubernetes/cniWindows.json new file mode 100644 index 0000000000..b01fa69453 --- /dev/null +++ b/test/e2e/kubernetes/cniWindows.json @@ -0,0 +1,60 @@ +{ + "apiVersion":"vlabs", + "properties":{ + "orchestratorProfile":{ + "orchestratorType":"Kubernetes", + "orchestratorRelease": "1.11", + "kubernetesConfig":{ + "networkPlugin":"azure", + "networkPolicy":"azure", + "azureCNIVersion":"v1.0.16", + "azureCNIURLWindows":"" + } + }, + "masterProfile":{ + "count":1, + "dnsPrefix":"cniWindows", + "vmSize":"Standard_D2_v2" + }, + "agentPoolProfiles":[ + { + "name":"windowspool2", + "count":2, + "vmSize":"Standard_D2_v2", + "availabilityProfile":"AvailabilitySet", + "osType":"Windows", + "extensions": [ + { + "name": "windows-patches" + } + ] + } + ], + "extensionProfiles": [ + { + "name": "windows-patches", + "version": "v1", + "rootURL": "https://raw.githubusercontent.com/Azure/aks-engine/master/", + "extensionParameters": "'http://download.windowsupdate.com/c/msdownload/update/software/updt/2019/01/windows10.0-kb4476976-x64_a9c241844c041cb8dbcf28b5635eecb1a57e028a.msu'" + } + ], + "windowsProfile":{ + "adminUsername":"azureuser", + "adminPassword":"azureTest@!" + }, + "linuxProfile":{ + "adminUsername":"azureuser", + "ssh":{ + "publicKeys":[ + { + "keyData":"" + } + ] + } + }, + "servicePrincipalProfile":{ + "clientId":"", + "secret":"" + } + } +} \ No newline at end of file