Replies: 11 comments 4 replies
|
Add support for VLAN and bonding. Currently, the script removes the existing VLAN and bonding configuration from the 01-netcfg.yaml file. Thanks. |
|
don't hardcode ens0 interface name :) |
|
@rohityadavcloud I am currently testing it on WSL Ubuntu 22.04.5 LTS |
|
Testing on Ubuntu 24.04 |
|
|
generate_password() {
openssl </dev/null >/dev/null 2>/dev/null
if [ $? -eq 0 ]
then
passwd=`openssl rand -base64 40 | tr -d '/' | cut -c1-32 `
fi
if [ -z "$passwd" ]
then
passwd=`dd if=/dev/urandom bs=32 count=1 2>/dev/null | od -x | head -n 1 | tr -d ' ' | cut -c8-40`
fi
if [ -z "$passwd" ]
then
passwd="password"
fi
echo "$passwd"
}
PASSWD=$(generate_password) # Random password with 32 characters |
|
may support more OSes , for example RHEL 8/9 and variants ? |
|
On WSL, added this line just after the creation of /etc/netplan/01-netcfg.yaml to fix a permission issue : |
|
The installer keeps breaking the Internet connection of WSL, I’m still trying to figure out why. |
|
I have made a modest pull request that improves some network handling (including hardcoded ens3) and some mysql handling. This was (unfortunately) tested on VMware hosted VM with nested virtualization :) |
|
This is now moved to https://github.com/apache/cloudstack-installer |
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Test and explore https://github.com/rohityadavcloud/c8k.in, add/report issues & send pull requests.
The ultimate goal is to allow (in future) anybody wanting to try CloudStack by simply doing:
Update: moved here https://github.com/apache/cloudstack-installer
All reactions