-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpolicy_bios.tf
More file actions
253 lines (226 loc) · 6.53 KB
/
Copy pathpolicy_bios.tf
File metadata and controls
253 lines (226 loc) · 6.53 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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
##
## BIOS Policy Guidance
##
## In general, "platform-default" is a reasonable choice for any setting.
## For more guidance, please see the performance tuning whitepapers.
## M5: https://www.cisco.com/c/en/us/products/collateral/servers-unified-computing/ucs-b-series-blade-servers/white-paper-c11-744678.html
## M6: https://www.cisco.com/c/en/us/products/collateral/servers-unified-computing/ucs-b-series-blade-servers/performance-tuning-guide-ucs-m6-servers.html
##
## TERRAFORM resource for BIOS policy: https://registry.terraform.io/providers/CiscoDevNet/intersight/latest/docs/resources/bios_policy
##
resource "intersight_bios_policy" "platform-defaults" {
name = "platform-defaults"
dynamic "tags" {
for_each = local.tags
content {
key = tags.key
value = tags.value
}
}
organization {
moid = local.organization
}
}
### General Purpose Workloads
resource "intersight_bios_policy" "cpu-intensive" {
name = "cpu-intensive"
dynamic "tags" {
for_each = local.tags
content {
key = tags.key
value = tags.value
}
}
organization {
moid = local.organization
}
## Customizations
adjacent_cache_line_prefetch = "disabled"
streamer_prefetch = "disabled"
llc_prefetch = "disabled"
cpu_perf_enhancement = "Auto"
processor_c1e = "enabled"
processor_c6report = "enabled"
work_load_config = "Balanced"
### UPI prefetch seems to be missing from terraform
xpt_prefetch = "enabled"
upi_link_enablement = "1"
upi_power_management = "enabled"
snc = "enabled"
ufs_disable = "disabled"
llc_alloc = "disabled"
imc_interleave = "1-way Interleave"
select_memory_ras_configuration = "maximum-performance"
dram_refresh_rate = "1x"
patrol_scrub = "disabled"
}
resource "intersight_bios_policy" "io-intensive" {
name = "io-intensive"
dynamic "tags" {
for_each = local.tags
content {
key = tags.key
value = tags.value
}
}
organization {
moid = local.organization
}
## Customizations
cpu_performance = "custom"
hardware_prefetch = "disabled"
adjacent_cache_line_prefetch = "disabled"
streamer_prefetch = "disabled"
}
resource "intersight_bios_policy" "energy-efficient" {
name = "energy-efficient"
dynamic "tags" {
for_each = local.tags
content {
key = tags.key
value = tags.value
}
}
organization {
moid = local.organization
}
## Customizations
cpu_performance = "custom"
hardware_prefetch = "disabled"
adjacent_cache_line_prefetch = "disabled"
ip_prefetch = "disabled"
streamer_prefetch = "disabled"
processor_c1e = "enabled"
processor_c6report = "enabled"
package_cstate_limit = "C6 Non Retention"
work_load_config = "Balanced"
}
resource "intersight_bios_policy" "low-latency" {
name = "low-latency"
dynamic "tags" {
for_each = local.tags
content {
key = tags.key
value = tags.value
}
}
organization {
moid = local.organization
}
## Customizations
intel_virtualization_technology = "disabled"
intel_vt_for_directed_io = "disabled"
intel_turbo_boost_tech = "disabled"
energy_efficient_turbo = "disabled"
work_load_config = "Balanced"
dram_refresh_rate = "1x"
patrol_scrub = "disabled"
}
### Enterprise Workloads
resource "intersight_bios_policy" "relational-db" {
name = "relational-db"
dynamic "tags" {
for_each = local.tags
content {
key = tags.key
value = tags.value
}
}
organization {
moid = local.organization
}
## Customizations
llc_prefetch = "disabled"
cpu_perf_enhancement = "Auto"
processor_c1e = "disabled"
energy_efficient_turbo = "disabled"
xpt_prefetch = "enabled"
upi_power_management = "enabled"
snc = "enabled"
llc_alloc = "disabled"
imc_interleave = "1-way Interleave"
dram_refresh_rate = "1x"
patrol_scrub = "disabled"
}
resource "intersight_bios_policy" "virtualization" {
name = "virtualization"
dynamic "tags" {
for_each = local.tags
content {
key = tags.key
value = tags.value
}
}
organization {
moid = local.organization
}
## Customizations
cpu_perf_enhancement = "Auto"
}
resource "intersight_bios_policy" "analytical-db" {
name = "analytical-db"
dynamic "tags" {
for_each = local.tags
content {
key = tags.key
value = tags.value
}
}
organization {
moid = local.organization
}
## Customizations
intel_virtualization_technology = "disabled"
intel_vt_for_directed_io = "disabled"
cpu_perf_enhancement = "Auto"
processor_c1e = "disabled"
work_load_config = "Balanced"
dram_refresh_rate = "1x"
patrol_scrub = "disabled"
}
resource "intersight_bios_policy" "data-analytics" {
name = "data-analytics"
dynamic "tags" {
for_each = local.tags
content {
key = tags.key
value = tags.value
}
}
organization {
moid = local.organization
}
## Customizations
intel_vt_for_directed_io = "disabled"
cpu_perf_enhancement = "Auto"
work_load_config = "Balanced"
}
resource "intersight_bios_policy" "high-performance-computing" {
name = "high-performance-computing"
dynamic "tags" {
for_each = local.tags
content {
key = tags.key
value = tags.value
}
}
organization {
moid = local.organization
}
## Customizations
intel_virtualization_technology = "disabled"
llc_prefetch = "disabled"
intel_vt_for_directed_io = "disabled"
cpu_perf_enhancement = "Auto"
processor_c1e = "disabled"
processor_c6report = "disabled"
energy_efficient_turbo = "disabled"
work_load_config = "Balanced"
xpt_prefetch = "enabled"
upi_power_management = "enabled"
snc = "enabled"
llc_alloc = "disabled"
imc_interleave = "1-way Interleave"
dram_refresh_rate = "1x"
patrol_scrub = "disabled"
}