21 lines
549 B
Bash
21 lines
549 B
Bash
AIO_NAME=test5
|
|
|
|
|
|
create_aio_vm \
|
|
--password secrete123 \
|
|
--public-key ~/.ssh/id_rsa.pub \
|
|
--output-image /data/${AIO_NAME}.qcow2 \
|
|
--input-image ~/rhel-guest-image-8.4-1269.x86_64.qcow2 \
|
|
--image-size "800G" \
|
|
--os-variant rhel8.4 \
|
|
--name ${AIO_NAME} \
|
|
--local-hostname ${AIO_NAME} \
|
|
--instance-id ${AIO_NAME} \
|
|
--gateway 172.23.0.1 \
|
|
--dns 172.23.0.14 \
|
|
--mac-1 52:54:00:a5:48:03 \
|
|
--mac-2 52:54:00:a5:48:04 \
|
|
--search-domain evatt.ingenious.com.au \
|
|
--rhn-user $AIO_RHN_USER \
|
|
--rhn-password $AIO_RHN_PASSWORD
|
|
|