-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathconstants
378 lines (315 loc) · 15 KB
/
constants
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
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
#!/bin/bash
# shellcheck disable=SC2034
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
###########################################################
################## START - COLORS ########################
###########################################################
GREEN='\033[0;32m'
BLUE='\033[1;34m'
RED='\033[0;31m'
YELLOW='\033[0;33m'
# No color
NC='\033[0m'
###########################################################
################### END - COLORS #########################
###########################################################
###########################################################
########## START - Global definitions ####################
###########################################################
FEATURE_ENABLED=true
FEATURE_DISABLED=false
###############################################################################
# Description:
# Define packager installer inside the containers. i.e: dnf, apt, etc.
#PACKAGER_INSTALLER="dnf"
###############################################################################
###############################################################################
# Description:
# Define packager installer extra flags
#PACKAGER_INSTALLER_EXTRA_FLAGS=""
###############################################################################
###############################################################################
# Description
# Define Image Name
#IMAGE_NAME_CONTAINER="alpine"
#IMAGE_NAME_CONTAINER="quay.io/centos-sig-automotive/automotive-osbuild"
#IMAGE_COMMAND="sleep 3600"
###############################################################################
###############################################################################
# Description
# Number of containers to trigger. Default 10
# NUMBER_OF_CONTAINERS=5
###############################################################################
###############################################################################
# Description
# Remove podman volume, network and containers created as soon the program finish. Default: false
#CLEANUP="${FEATURE_DISABLED}"
###############################################################################
###############################################################################
# Description
# Extra packages to install in the containers
#EXTRA_PACKAGES_TO_INSTALL="vim podman"
###############################################################################
###########################################################
########## END - Global definitions ####################
###########################################################
###############################################################################
# Description
# Disk exhaustion test options
#DISK_EXHAUSTION="${FEATURE_ENABLED}"
#DISK_EXHAUSTION_THRESHOLD_PERCENT=95 # The threshold percentage for disk usage to trigger additional container creation
#DISK_EXHAUSTION_QUOTA_GB=1 # The size of the disk quota in gigabytes
#DISK_EXHAUSTION_WRITE_SIZE_MB=100 # The size of the write operations in megabytes
#DISK_EXHAUSTION_DISK_FILE="/tmp/disk_exhaustion_test.img" # The file to use for the loopback device
#DISK_EXHAUSTION_MOUNT_POINT="/mnt/test_volume" # The mount point inside the container
###############################################################################
###############################################################################
# Description
# Memory exhaustion test options
#MEMORY_EXHAUSTION="${FEATURE_ENABLED}"
#MEMORY_EXHAUSTION_BASE_CONTAINER_NAME="memory_eater_base_container"
#MEMORY_EXHAUSTION_BASE_CONTAINER_MEMORY_LIMIT=512m # Memory limit for the main container
#MEMORY_EXHAUSTION_BASE_CONTAINER_THRESHOLD_PERCENT=30 # PERCENT threshold for memory usage to trigger additional NESTED containers creation, in this case 30%
#MEMORY_EXHAUSTION_BASE_CONTAINER_WAIT_TIME_BEFORE_STOPPING_NESTED_CONTAINERS_IN_SEC=5
#MEMORY_EXHAUSTION_BASE_CONTAINER_SCRIPT_EXHAUST_MEMORY=exhaustion-memory-engine-stressor
#MEMORY_EXHAUSTION_BASE_CONTAINER_STRESS_NG_VM=1
#MEMORY_EXHAUSTION_BASE_CONTAINER_STRESS_NG_VM_METHOD=write64
#MEMORY_EXHAUSTION_BASE_CONTAINER_STRESS_NG_TIMEOUT=60s
###############################################################################
###############################################################################
# Description
# List current state of network, storage and containers. (true or false) Default: false
LIST_CURRENT_STATE="${FEATURE_DISABLED}"
###############################################################################
###############################################################################
# Description
# Controls how many containers are started/stopped in each batch.
BATCH_SIZE=16
###############################################################################
###############################################################################
# Description
# Specify the number of seconds to wait before forcibly stopping a container. Default is 10
TIMEOUT_PODMAN_STOP_CONTAINER=5
###############################################################################
###############################################################################
# Description
# Wait time for containers starting OR removal
TIMEOUT_WAITING_ACTIONS=300 # 5 minutes
###############################################################################
###############################################################################
# Description
# A comma separated check for systemd services which should be enabled.
#SERVICE_MUST_BE_ENABLED=
###############################################################################
###############################################################################
# Description
# A comma separated check for systemd services which should be disabled.
#SERVICE_MUST_BE_DISABLED=
###############################################################################
###########################################################
########## START - Cgroup definitions ####################
###########################################################
###############################################################################
# Description
# cgroup name for engine-stressor
CGROUP_NAME="engine_stressor"
###############################################################################
###############################################################################
# Description
# Path to engine-stressor cgroup
CGROUP_NAME_PATH="/sys/fs/cgroup/"${CGROUP_NAME}""
###############################################################################
###############################################################################
# Description
# Path for the cgroup general controllers
CGROUP_CONTROLLERS_PATH="/sys/fs/cgroup/cgroup.controllers"
###############################################################################
###############################################################################
# Description
# Max memory per container in the cgroup
#MEMORY_MAX_PER_CONTAINER="256M" # i.e: 256M, 512M, 1G, 16G, 32G
###############################################################################
###############################################################################
# Description
# Total memory set for the cgroup namespace
TOTAL_MEMORY_FOR_THE_NAMESPACE="1G" # i.e: 256M, 512M, 1G, 16G, 32G
###############################################################################
###############################################################################
# Description
# Array which contain the cgroupv2 resources used in the tool. i.e: memory, cpu, io
CGROUP_USED_CONTROLLERS=("memory", "cpu", "io")
###############################################################################
###############################################################################
# Description
# Just a random name that will be added a number after: i.e: text_container_X
#BASE_NAME_FOR_CONTAINERS="test_container_"
###############################################################################
######################################################################
############ END - Cgroup definitions ###############################
######################################################################
######################################################################
############ START - Network ##########################
######################################################################
######################################################################
# Description
# Set DNS Server as param when creating a new podman network
# NETWORK_DNS_SERVER="8.8.8.8"
######################################################################
######################################################################
############ STOP - Network ##########################
######################################################################
######################################################################
############ START - SELinux ##########################
######################################################################
######################################################################
# Description
# SELinux mode expected in the container
#SELINUX_STATUS_MUST_BE="Enforcing"
######################################################################
######################################################################
############ END - SELinux ###########################
######################################################################
######################################################################
############ START - STRESS definitions #############################
######################################################################
###############################################################################
# Description
# Number of CPU workers (threads) to stress (optional)
#STRESS_CPU="6"
###############################################################################
###############################################################################
# Description
# Number of disk workers (threads) to stress (optional)
#STRESS_DISK="8"
###############################################################################
###############################################################################
# Description
# Size of the temporary file for disk stress (optional)
#STRESS_DISK_SIZE="1G"
###############################################################################
###############################################################################
# Description
# Memory to be stressed in each container (optional)
#STRESS_MEMORY="1G"
###############################################################################
###############################################################################
# Description
# Duration to stress (REQUIRED IF: any STRESS option is set)
STRESS_TIME="60s"
###############################################################################
###############################################################################
# Description
# If stress-ng tool should run in the container created by the tool. (Default: false)
# STRESS_NG_SET_TO_RUN=false
###############################################################################
###############################################################################
# Description
# --vm (virtual memory stressor instances)
STRESS_VM_STRESSOR_INSTANCES=100
###############################################################################
###############################################################################
# Description
# Check if timeout stop sec works in different arguments.
#SYSTEMD_TIMEOUTSTOPSEC=INFINITY
###############################################################################
# Check if one variable is set and the other is not
if [[ (-n "$STRESS_DISK" && -z "$STRESS_DISK_SIZE") || \
(-z "$STRESS_DISK" && -n "$STRESS_DISK_SIZE") ]]; then
echo -e "FAIL: Error: Both STRESS_DISK and STRESS_DISK_SIZE must be set and not empty if one of them is set."
exit 1
fi
# Check if STRESS_TIME is NOT set but one of STRESS options is configured.
# In such case, we must fail.
if [ -z "$STRESS_TIME" ]; then
if [ -n "${STRESS_MEMORY}" ] ||
[ -n "${STRESS_CPU}" ] ||
[ -n "${STRESS_DISK}" ] ||
[ -n "${STRESS_NETWORK}" ] ||
[ -n "${STRESS_TCP}" ] ||
[ -n "${STRESS_UDP}" ]; then
echo -e "FAIL: Exiting with failure because one or more " \
"stress variables are set but STRESS_TIME is not set."
echo -e "FAIL: STRESS_TIME ensure the container remains " \
"running for the duration of the stress test."
exit 1
fi
fi
###########################################################
############## END - STRESS definitions ##################
###########################################################
###########################################################
###########################################################
#
# Set defaults if user didn't set values
#
###########################################################
###########################################################
if [ -z "${VERBOSE+x}" ]; then
VERBOSE="${FEATURE_DISABLED}"
fi
if [ -z "${CLEANUP+x}" ]; then
CLEANUP="${FEATURE_DISABLED}"
fi
if [ -z "${PACKAGER_INSTALLER+x}" ]; then
PACKAGER_INSTALLER="dnf"
fi
if [ -z "${PACKAGER_INSTALLER_EXTRA_FLAGS+x}" ]; then
PACKAGER_INSTALLER_EXTRA_FLAGS=""
fi
if [ -z "${VOLUME_PATH+x}" ]; then
VOLUME_PATH="/data"
fi
if [ -z "$STRESS_VM_STRESSOR_INSTANCES" ]; then
STRESS_VM_STRESSOR_INSTANCES=1
fi
if [ -z "${MEMORY_MAX_PER_CONTAINER+x}" ]; then
MEMORY_MAX_PER_CONTAINER="256M"
fi
if [ -z "${TOTAL_MEMORY_FOR_THE_NAMESPACE+x}" ]; then
TOTAL_MEMORY_FOR_THE_NAMESPACE="1G"
fi
if [ -z "${BASE_NAME_FOR_CONTAINERS+x}" ]; then
BASE_NAME_FOR_CONTAINERS="test_container_"
fi
if [ -z "${TIMEOUT_PODMAN_STOP_CONTAINER+x}" ]; then
TIMEOUT_PODMAN_STOP_CONTAINER=5
fi
if [ -z "${CGROUP_NAME+x}" ]; then
CGROUP_NAME="engine_stressor"
fi
if [ -z "${IMAGE_NAME_CONTAINER+x}" ]; then
IMAGE_NAME_CONTAINER="centos:stream9"
fi
if [ -z "${IMAGE_COMMAND+x}" ]; then
IMAGE_COMMAND="sleep 3600"
fi
if [ -z "${LIST_CURRENT_STATE+x}" ]; then
LIST_CURRENT_STATE="${FEATURE_DISABLED}"
fi
if [ -z "${BATCH_SIZE+x}" ]; then
BATCH_SIZE=16
fi
if [ -z "${NUMBER_OF_CONTAINERS+x}" ]; then
NUMBER_OF_CONTAINERS=10
fi
if [ -z "${STRESS_NG_SET_TO_RUN+x}" ]; then
STRESS_NG_SET_TO_RUN=false
fi
if [ -z "${SERVICE_MUST_BE_ENABLED+x}" ]; then
SERVICE_MUST_BE_ENABLED=""
fi
if [ -z "${SERVICE_MUST_BE_DISABLED+x}" ]; then
SERVICE_MUST_BE_DISABLED=""
fi