-
Notifications
You must be signed in to change notification settings - Fork 5.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add compute test-scenario update gallery collection update ssh public key
- Loading branch information
Showing
12 changed files
with
169 additions
and
42 deletions.
There are no files selected for viewing
19 changes: 19 additions & 0 deletions
19
...ute/resource-manager/Microsoft.Compute/preview/2020-09-30/test-scenarios/galleryCRUD.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
scope: ResourceGroup | ||
testScenarios: | ||
- description: gallerySimple1 | ||
steps: | ||
- exampleFile: ../examples/CreateOrUpdateASimpleGallery.json | ||
step: createOrUpdateASimpleGallery | ||
- exampleFile: ../examples/GetAGallery.json | ||
step: getAGallery | ||
- exampleFile: ../examples/UpdateASimpleGallery.json | ||
step: updateAGallery | ||
- exampleFile: ../examples/CreateOrUpdateASimpleGalleryApplication.json | ||
step: createGalleryApplication | ||
- exampleFile: ../examples/ListGalleriesInAResourceGroup.json | ||
step: listGalleriesInAResourceGroup | ||
- exampleFile: ../examples/DeleteAGalleryApplication.json | ||
step: deleteGalleryApplication | ||
- exampleFile: ../examples/DeleteAGallery.json | ||
step: deleteAGallery | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 11 additions & 0 deletions
11
...manager/Microsoft.Compute/preview/2020-10-01-preview/test-scenarios/cloudServiceCRUD.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
scope: ResourceGroup | ||
|
||
|
||
testScenarios: | ||
- description: cloudService | ||
name: cloudService | ||
steps: | ||
- exampleFile: ../examples/CreateCloudServiceWithSingleRole.json | ||
step: createCloudServiceWithSingleRole | ||
- exampleFile: ../examples/CreateCloudServiceWithMultiRole.json | ||
step: createCloudServiceWithMultiRole |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
50 changes: 50 additions & 0 deletions
50
...manager/Microsoft.ContainerService/stable/2020-12-01/test-scenarios/containerService.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
scope: ResourceGroup | ||
|
||
prepareSteps: | ||
- exampleFile: ../examples/ManagedClustersCreate_Update.json | ||
step: prepareManagedCluster | ||
|
||
requiredVariables: | ||
- clientId | ||
- clientSecret | ||
- keyData | ||
|
||
testScenarios: | ||
- description: kubernetesCluster agentPool test | ||
name: aksAgentPoolBasic | ||
steps: | ||
- exampleFile: ../examples/AgentPoolsCreate_Update.json | ||
step: agentPoolCreate | ||
- description: agentPool with ephemeral | ||
name: aksAgentPoolEphemeral | ||
variables: | ||
agentPoolName: agentpool2 | ||
steps: | ||
- exampleFile: ../examples/AgentPoolsCreate_Ephemeral.json | ||
step: agentPool_Ephemeral | ||
|
||
- description: agentPool with Spot | ||
name: aksAgentPoolSpot | ||
variables: | ||
agentPoolName: agentpool3 | ||
steps: | ||
- exampleFile: ../examples/AgentPoolsCreate_Spot.json | ||
step: agentPool_Ephemeral | ||
|
||
- description: agentPool with enableEncryptionAtHost.json | ||
name: aksAgentPoolEncryptionAtHost | ||
variables: | ||
agentPoolName: agentpool4 | ||
steps: | ||
- exampleFile: ../examples/AgentPoolsCreate_EnableEncryptionAtHost.json | ||
step: agentPool_Ephemeral | ||
|
||
- description: agentPool with customNodeConfig | ||
name: aksAgentPoolCustomNodeConfig | ||
variables: | ||
agentPoolName: agentpool5 | ||
steps: | ||
- exampleFile: ../examples/AgentPoolsCreate_CustomNodeConfig.json | ||
step: agentPool_Ephemeral | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
28 changes: 28 additions & 0 deletions
28
...ource-manager/Microsoft.Storage/stable/2019-06-01/test-scenarios/createResourceGroup.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
{ | ||
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", | ||
"contentVersion": "1.0.0.1", | ||
"parameters": { | ||
"rgName": { | ||
"type": "string" | ||
}, | ||
"rgLocation": { | ||
"type": "string" | ||
}, | ||
"tags": { | ||
"type": "object", | ||
"defaultValue": {} | ||
} | ||
}, | ||
"variables": {}, | ||
"resources": [ | ||
{ | ||
"type": "Microsoft.Resources/resourceGroups", | ||
"apiVersion": "2018-05-01", | ||
"location": "[parameters('rgLocation')]", | ||
"name": "[parameters('rgName')]", | ||
"properties": {}, | ||
"tags": "[parameters('tags')]" | ||
} | ||
], | ||
"outputs": {} | ||
} |
15 changes: 15 additions & 0 deletions
15
...ger/Microsoft.Storage/stable/2019-06-01/test-scenarios/createResourceGroupParameters.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{ | ||
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", | ||
"contentVersion": "1.0.0.0", | ||
"parameters": { | ||
"rgName": { | ||
"value": "ruowan-test1" | ||
}, | ||
"rgLocation": { | ||
"value": "eastus" | ||
}, | ||
"tags": { | ||
"value": {} | ||
} | ||
} | ||
} |
13 changes: 13 additions & 0 deletions
13
...urce-manager/Microsoft.Storage/stable/2019-06-01/test-scenarios/createStorageAccount.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
scope: ResourceGroup | ||
|
||
|
||
testScenarios: | ||
- description: storageAccount | ||
name: testCreateStorageAccount | ||
steps: | ||
- exampleFile: ../examples/StorageAccountCreate.json | ||
step: storageAccountCreate | ||
- exampleFile: ../examples/BlobContainersPut.json | ||
step: blobContainersPut | ||
- exampleFile: ../examples/StorageAccountDelete.json | ||
step: storageAccountDelete |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters