-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathchaos-experiment-arm-template.json
More file actions
139 lines (139 loc) · 4.85 KB
/
Copy pathchaos-experiment-arm-template.json
File metadata and controls
139 lines (139 loc) · 4.85 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
{
"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"chaosStudioTargetName": {
"type": "string",
"defaultValue": "Microsoft-AzureKubernetesServiceChaosMesh",
"metadata": {
"description": "Name of the Chaos Studio target"
}
},
"aksClusterName": {
"type": "string",
"defaultValue": "eshopcleveraks",
"metadata": {
"description": "Name of the AKS cluster"
}
},
"location": {
"type": "string",
"defaultValue": "[resourceGroup().location]",
"metadata": {
"description": "Location for the resources"
}
}
},
"variables": {
"aksResourceId": "[resourceId('Microsoft.ContainerService/managedClusters', parameters('aksClusterName'))]",
"chaosTargetId": "[concat(variables('aksResourceId'), '/providers/Microsoft.Chaos/targets/', parameters('chaosStudioTargetName'))]"
},
"resources": [
{
"type": "Microsoft.ContainerService/managedClusters/providers/targets",
"apiVersion": "2024-01-01",
"name": "[concat(parameters('aksClusterName'), '/Microsoft.Chaos/', parameters('chaosStudioTargetName'))]",
"properties": {}
},
{
"type": "Microsoft.ContainerService/managedClusters/providers/targets/capabilities",
"apiVersion": "2024-01-01",
"name": "[concat(parameters('aksClusterName'), '/Microsoft.Chaos/', parameters('chaosStudioTargetName'), '/PodChaos-2.2')]",
"dependsOn": [
"[concat(parameters('aksClusterName'), '/Microsoft.Chaos/', parameters('chaosStudioTargetName'))]"
],
"properties": {}
},
{
"type": "Microsoft.ContainerService/managedClusters/providers/targets/capabilities",
"apiVersion": "2024-01-01",
"name": "[concat(parameters('aksClusterName'), '/Microsoft.Chaos/', parameters('chaosStudioTargetName'), '/StressChaos-2.2')]",
"dependsOn": [
"[concat(parameters('aksClusterName'), '/Microsoft.Chaos/', parameters('chaosStudioTargetName'))]"
],
"properties": {}
},
{
"type": "Microsoft.ContainerService/managedClusters/providers/targets/capabilities",
"apiVersion": "2024-01-01",
"name": "[concat(parameters('aksClusterName'), '/Microsoft.Chaos/', parameters('chaosStudioTargetName'), '/NetworkChaos-2.2')]",
"dependsOn": [
"[concat(parameters('aksClusterName'), '/Microsoft.Chaos/', parameters('chaosStudioTargetName'))]"
],
"properties": {}
},
{
"type": "Microsoft.ContainerService/managedClusters/providers/targets/capabilities",
"apiVersion": "2024-01-01",
"name": "[concat(parameters('aksClusterName'), '/Microsoft.Chaos/', parameters('chaosStudioTargetName'), '/IOChaos-2.2')]",
"dependsOn": [
"[concat(parameters('aksClusterName'), '/Microsoft.Chaos/', parameters('chaosStudioTargetName'))]"
],
"properties": {}
},
{
"type": "Microsoft.Chaos/experiments",
"apiVersion": "2024-01-01",
"name": "eshop-pod-failure-experiment",
"location": "[parameters('location')]",
"dependsOn": [
"[concat(parameters('aksClusterName'), '/Microsoft.Chaos/', parameters('chaosStudioTargetName'))]"
],
"identity": {
"type": "SystemAssigned"
},
"properties": {
"selectors": [
{
"id": "eshop-selector",
"type": "List",
"targets": [
{
"type": "ChaosTarget",
"id": "[variables('chaosTargetId')]"
}
]
}
],
"steps": [
{
"name": "ChaosStep",
"branches": [
{
"name": "ChaosBranch",
"actions": [
{
"type": "urn:csci:microsoft:azureKubernetesServiceChaosMesh:podChaos/2.2",
"name": "PodFailureAction",
"parameters": [
{
"key": "jsonSpec",
"value": "{\n \"mode\": \"one\",\n \"selector\": {\n \"namespaces\": [\"eshop\"],\n \"labelSelectors\": {\n \"app\": \"webmvc\"\n }\n },\n \"action\": \"pod-failure\",\n \"duration\": \"60s\"\n}"
}
],
"duration": "PT5M",
"selectorId": "eshop-selector"
}
]
}
]
}
]
}
}
],
"outputs": {
"chaosTargetId": {
"type": "string",
"value": "[variables('chaosTargetId')]"
},
"experimentName": {
"type": "string",
"value": "eshop-pod-failure-experiment"
},
"experimentId": {
"type": "string",
"value": "[resourceId('Microsoft.Chaos/experiments', 'eshop-pod-failure-experiment')]"
}
}
}