@@ -174,17 +174,6 @@ set -x
174
174
#
175
175
# export DISABLE_MULTICAST=false
176
176
177
- # ENABLE_METALLB_MODE -
178
- # Enable metallb
179
- # Default is unset.
180
- # Choices: "l2", "bgp"
181
- #
182
- # export ENABLE_METALLB_MODE="l2"
183
- #
184
- # metallb container location (optional)
185
- # export METALLB_IMAGE_BASE=
186
- # export METALLB_IMAGE_TAG=
187
-
188
177
# ###############################################################################
189
178
# # Network Settings
190
179
# #
@@ -236,7 +225,89 @@ set -x
236
225
# More info: https://github.com/openshift/cluster-baremetal-operator/blob/master/api/v1alpha1/provisioning_types.go#L163-L171
237
226
# export ENABLE_VIRTUAL_MEDIA_VIA_EXTERNAL_NETWORK=true
238
227
239
- # Set the DHCP lease time (Default: 60)
228
+ # Enable testing of custom machine-api-operator-image
229
+ # export TEST_CUSTOM_MAO=true
230
+
231
+ # Custom machine-api-operator image with tag
232
+ # export CUSTOM_MAO_IMAGE="quay.io/mao-user/machine-api-operator:mao-fix"
233
+
234
+ # Git repository that is holding any custom machine-api-operator changes
235
+ # export REPO_NAME="mao-user"
236
+
237
+ # Name of branch in the above repo which contains the custom MAO changes
238
+ # export MAO_BRANCH="mao-fix"
239
+
240
+ # export LOCAL_REGISTRY_DNS_NAME="virthost.ostest.test.metalkube.org"
241
+ # export LOCAL_REGISTRY_PORT="5000"
242
+
243
+ # configure username for registry
244
+ # export REGISTRY_USER=some-user
245
+
246
+ # congiugre password for registry user
247
+ # export REGISTRY_PASS=some-pass
248
+
249
+ # configure base directory for registry
250
+ # export REGISTRY_DIR=/opt/registry
251
+
252
+ # configure location of mirror's creds
253
+ # export REGISTRY_CREDS=${REGISTRY_CREDS:-$USER/private-mirror.json}
254
+
255
+ # Install operator-sdk for local testing of baremetal-operator
256
+ # export INSTALL_OPERATOR_SDK=1
257
+
258
+ # Set a custom hostname format for masters. This is a format string that should
259
+ # include one %d field, which will be replaced with the number of the node.
260
+ # export MASTER_HOSTNAME_FORMAT=master-%d
261
+
262
+ # Set a custom hostname format for workers. This is a format string that should
263
+ # include one %d field, which will be replaced with the number of the node.
264
+ # export WORKER_HOSTNAME_FORMAT=worker-%d
265
+
266
+ # Change VM resources for masters
267
+ # export MASTER_MEMORY=16384
268
+ # export MASTER_DISK=20
269
+ # export MASTER_VCPU=8
270
+
271
+ # Change VM resources for workers
272
+ # export WORKER_MEMORY=8192
273
+ # export WORKER_DISK=20
274
+ # export WORKER_VCPU=4
275
+
276
+ # Change VM resources for extra workers. If not supplied defaults to the
277
+ # regular workers specs
278
+ # export EXTRA_WORKER_MEMORY=8192
279
+ # export EXTRA_WORKER_DISK=20
280
+ # export EXTRA_WORKER_VCPU=4
281
+
282
+ # Add extradisks to VMs
283
+ # export VM_EXTRADISKS=true
284
+
285
+ # Configure how many extra disks to add to VMs. Takes a string of disk
286
+ # names delimited by spaces. Example "vdb vdc"
287
+ # export VM_EXTRADISKS_LIST="vdb vdc"
288
+
289
+ # Configure size of extra disks added to VMs
290
+ # export VM_EXTRADISKS_SIZE="10G"
291
+
292
+ # Add TPM2.0 emulator to VMs
293
+ # export VM_TPM_EMULATOR=true
294
+
295
+ # Provide additional master/worker ignition configuration, will be
296
+ # merged with the installer provided config, can be used to modify
297
+ # the default nic configuration etc
298
+ # export IGNITION_EXTRA=extra.ign
299
+
300
+ # Folder where to copy extra manifests for the cluster deployment
301
+ # export ASSETS_EXTRA_FOLDER=local_file_path
302
+
303
+ # Enable FIPS mode
304
+ # export FIPS_MODE=true
305
+
306
+ # In order to test using unicast for keepalived, one needs to disable multicast.
307
+ # Setting this variable to true will block multicast via ebtables for both IPv4 and IPv6.
308
+ # export DISABLE_MULTICAST=false
309
+
310
+ # Set the DHCP lease time
240
311
# export DHCP_LEASE_EXPIRY=60
241
312
242
313
# DNS_VIP -
0 commit comments