From 7880b48d996aa29a4e5c467af89e7896129f8a3a Mon Sep 17 00:00:00 2001 From: Kat Munson Date: Thu, 21 Nov 2024 16:22:46 -0800 Subject: [PATCH 1/2] add templates for sig/vhd --- microsoft/utils/aitl/tier0-sig.json | 25 +++++++++++++++++++++++++ microsoft/utils/aitl/tier0-vhd.json | 23 +++++++++++++++++++++++ microsoft/utils/aitl/tier1-sig.json | 27 +++++++++++++++++++++++++++ microsoft/utils/aitl/tier1-vhd.json | 25 +++++++++++++++++++++++++ microsoft/utils/aitl/tier2-sig.json | 28 ++++++++++++++++++++++++++++ microsoft/utils/aitl/tier2-vhd.json | 26 ++++++++++++++++++++++++++ 6 files changed, 154 insertions(+) create mode 100644 microsoft/utils/aitl/tier0-sig.json create mode 100644 microsoft/utils/aitl/tier0-vhd.json create mode 100644 microsoft/utils/aitl/tier1-sig.json create mode 100644 microsoft/utils/aitl/tier1-vhd.json create mode 100644 microsoft/utils/aitl/tier2-sig.json create mode 100644 microsoft/utils/aitl/tier2-vhd.json diff --git a/microsoft/utils/aitl/tier0-sig.json b/microsoft/utils/aitl/tier0-sig.json new file mode 100644 index 0000000000..b1402207dd --- /dev/null +++ b/microsoft/utils/aitl/tier0-sig.json @@ -0,0 +1,25 @@ +{ + "location": "westus3", + "properties": { + "jobTemplateInstance": { + "templateTags": [], + "selections": [ + { + "casePriority": [ + 0 + ] + } + ], + "region": [], + "vmSize": [] + }, + "image": { + "type": "shared_gallery", + "architecture": "x64", + "vhdGeneration": 2, + "gallery": "", + "definition": "", + "version": "" + } + } +} \ No newline at end of file diff --git a/microsoft/utils/aitl/tier0-vhd.json b/microsoft/utils/aitl/tier0-vhd.json new file mode 100644 index 0000000000..649e319199 --- /dev/null +++ b/microsoft/utils/aitl/tier0-vhd.json @@ -0,0 +1,23 @@ +{ + "location": "westus3", + "properties": { + "jobTemplateInstance": { + "templateTags": [], + "selections": [ + { + "casePriority": [ + 0 + ] + } + ], + "region": [], + "vmSize": [] + }, + "image": { + "type": "vhd", + "architecture": "x64", + "vhdGeneration": 2, + "url": "" + } + } +} \ No newline at end of file diff --git a/microsoft/utils/aitl/tier1-sig.json b/microsoft/utils/aitl/tier1-sig.json new file mode 100644 index 0000000000..536c659f3a --- /dev/null +++ b/microsoft/utils/aitl/tier1-sig.json @@ -0,0 +1,27 @@ +{ + "location": "westus3", + "properties": { + "jobTemplateInstance": { + "templateTags": [], + "selections": [ + { + "casePriority": [ + 0, + 1 + ] + } + ], + "region": [], + "vmSize": [], + "concurrency": 4 + }, + "image": { + "type": "shared_gallery", + "architecture": "x64", + "vhdGeneration": 2, + "gallery": "", + "definition": "", + "version": "" + } + } +} diff --git a/microsoft/utils/aitl/tier1-vhd.json b/microsoft/utils/aitl/tier1-vhd.json new file mode 100644 index 0000000000..f76cd5a953 --- /dev/null +++ b/microsoft/utils/aitl/tier1-vhd.json @@ -0,0 +1,25 @@ +{ + "location": "westus3", + "properties": { + "jobTemplateInstance": { + "templateTags": [], + "selections": [ + { + "casePriority": [ + 0, + 1 + ] + } + ], + "region": [], + "vmSize": [], + "concurrency": 4 + }, + "image": { + "type": "vhd", + "architecture": "x64", + "vhdGeneration": 2, + "url": "" + } + } +} diff --git a/microsoft/utils/aitl/tier2-sig.json b/microsoft/utils/aitl/tier2-sig.json new file mode 100644 index 0000000000..3dfaf3dd52 --- /dev/null +++ b/microsoft/utils/aitl/tier2-sig.json @@ -0,0 +1,28 @@ +{ + "location": "westus3", + "properties": { + "jobTemplateInstance": { + "templateTags": [], + "selections": [ + { + "casePriority": [ + 0, + 1, + 2 + ] + } + ], + "region": [], + "vmSize": [], + "concurrency": 4 + }, + "image": { + "type": "shared_gallery", + "architecture": "x64", + "vhdGeneration": 2, + "gallery": "", + "definition": "", + "version": "" + } + } +} diff --git a/microsoft/utils/aitl/tier2-vhd.json b/microsoft/utils/aitl/tier2-vhd.json new file mode 100644 index 0000000000..2d101309db --- /dev/null +++ b/microsoft/utils/aitl/tier2-vhd.json @@ -0,0 +1,26 @@ +{ + "location": "westus3", + "properties": { + "jobTemplateInstance": { + "templateTags": [], + "selections": [ + { + "casePriority": [ + 0, + 1, + 2 + ] + } + ], + "region": [], + "vmSize": [], + "concurrency": 4 + }, + "image": { + "type": "vhd", + "architecture": "x64", + "vhdGeneration": 2, + "url": "" + } + } +} From addafea97c836707917153cc975922604238f31b Mon Sep 17 00:00:00 2001 From: Kat Munson Date: Fri, 22 Nov 2024 10:33:42 -0800 Subject: [PATCH 2/2] delete extra files --- microsoft/utils/aitl/tier1-sig.json | 27 --------------------------- microsoft/utils/aitl/tier1-vhd.json | 25 ------------------------- microsoft/utils/aitl/tier2-sig.json | 28 ---------------------------- microsoft/utils/aitl/tier2-vhd.json | 26 -------------------------- 4 files changed, 106 deletions(-) delete mode 100644 microsoft/utils/aitl/tier1-sig.json delete mode 100644 microsoft/utils/aitl/tier1-vhd.json delete mode 100644 microsoft/utils/aitl/tier2-sig.json delete mode 100644 microsoft/utils/aitl/tier2-vhd.json diff --git a/microsoft/utils/aitl/tier1-sig.json b/microsoft/utils/aitl/tier1-sig.json deleted file mode 100644 index 536c659f3a..0000000000 --- a/microsoft/utils/aitl/tier1-sig.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "location": "westus3", - "properties": { - "jobTemplateInstance": { - "templateTags": [], - "selections": [ - { - "casePriority": [ - 0, - 1 - ] - } - ], - "region": [], - "vmSize": [], - "concurrency": 4 - }, - "image": { - "type": "shared_gallery", - "architecture": "x64", - "vhdGeneration": 2, - "gallery": "", - "definition": "", - "version": "" - } - } -} diff --git a/microsoft/utils/aitl/tier1-vhd.json b/microsoft/utils/aitl/tier1-vhd.json deleted file mode 100644 index f76cd5a953..0000000000 --- a/microsoft/utils/aitl/tier1-vhd.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "location": "westus3", - "properties": { - "jobTemplateInstance": { - "templateTags": [], - "selections": [ - { - "casePriority": [ - 0, - 1 - ] - } - ], - "region": [], - "vmSize": [], - "concurrency": 4 - }, - "image": { - "type": "vhd", - "architecture": "x64", - "vhdGeneration": 2, - "url": "" - } - } -} diff --git a/microsoft/utils/aitl/tier2-sig.json b/microsoft/utils/aitl/tier2-sig.json deleted file mode 100644 index 3dfaf3dd52..0000000000 --- a/microsoft/utils/aitl/tier2-sig.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "location": "westus3", - "properties": { - "jobTemplateInstance": { - "templateTags": [], - "selections": [ - { - "casePriority": [ - 0, - 1, - 2 - ] - } - ], - "region": [], - "vmSize": [], - "concurrency": 4 - }, - "image": { - "type": "shared_gallery", - "architecture": "x64", - "vhdGeneration": 2, - "gallery": "", - "definition": "", - "version": "" - } - } -} diff --git a/microsoft/utils/aitl/tier2-vhd.json b/microsoft/utils/aitl/tier2-vhd.json deleted file mode 100644 index 2d101309db..0000000000 --- a/microsoft/utils/aitl/tier2-vhd.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "location": "westus3", - "properties": { - "jobTemplateInstance": { - "templateTags": [], - "selections": [ - { - "casePriority": [ - 0, - 1, - 2 - ] - } - ], - "region": [], - "vmSize": [], - "concurrency": 4 - }, - "image": { - "type": "vhd", - "architecture": "x64", - "vhdGeneration": 2, - "url": "" - } - } -}