From 3f232ba97ebd11315abc9026980e7434bce66bd3 Mon Sep 17 00:00:00 2001 From: Jack Francis Date: Tue, 23 Jul 2019 08:49:23 -0700 Subject: [PATCH] =?UTF-8?q?test:=20replace=20=E2=80=9Cvanilla=E2=80=9D=20E?= =?UTF-8?q?2E=20cluster=20test=20with=20non-VHD=20cluster=20test=20(#1650)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .pipelines/pr-e2e.yaml | 4 +-- examples/kubernetes-ubuntu-distro.json | 36 ++++++++++++++++++++++++++ 2 files changed, 38 insertions(+), 2 deletions(-) create mode 100644 examples/kubernetes-ubuntu-distro.json diff --git a/.pipelines/pr-e2e.yaml b/.pipelines/pr-e2e.yaml index 54d7026a7..e265254ec 100644 --- a/.pipelines/pr-e2e.yaml +++ b/.pipelines/pr-e2e.yaml @@ -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: diff --git a/examples/kubernetes-ubuntu-distro.json b/examples/kubernetes-ubuntu-distro.json new file mode 100644 index 000000000..7a057a9d8 --- /dev/null +++ b/examples/kubernetes-ubuntu-distro.json @@ -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": "" + } + } +}