test: replace “vanilla” E2E cluster test with non-VHD cluster test (#1650)

This commit is contained in:
Jack Francis 2019-07-23 08:49:23 -07:00 коммит произвёл Azure Kubernetes Service Bot
Родитель aa8bc126bd
Коммит 3f232ba97e
2 изменённых файлов: 38 добавлений и 2 удалений

Просмотреть файл

@ -69,8 +69,8 @@ jobs:
- template: e2e-job-template.yaml
parameters:
name: 'default_linux_e2e'
apimodel: 'examples/kubernetes.json'
name: 'k8s_non_vhd_deployment'
apimodel: 'examples/kubernetes-ubuntu-distro.json'
- template: e2e-job-template.yaml
parameters:

Просмотреть файл

@ -0,0 +1,36 @@
{
"apiVersion": "vlabs",
"properties": {
"orchestratorProfile": {
"orchestratorType": "Kubernetes"
},
"masterProfile": {
"count": 1,
"dnsPrefix": "",
"vmSize": "Standard_D2_v3",
"distro": "ubuntu"
},
"agentPoolProfiles": [
{
"name": "agentpool1",
"count": 2,
"vmSize": "Standard_D2_v3",
"distro": "ubuntu"
}
],
"linuxProfile": {
"adminUsername": "azureuser",
"ssh": {
"publicKeys": [
{
"keyData": ""
}
]
}
},
"servicePrincipalProfile": {
"clientId": "",
"secret": ""
}
}
}