6e72a2d376
As one of the community-wide goals, devstack has shifted to Ubuntu Jammy from Antelope cycle [1]. So, add playbooks for Jammy to installer. Although Focal support is still remained so that you can setup your environment on older version, but will be removed later. There are some additional updates. * Add bento as supported boxes which are well maintained more. * Use experimental Vagrant Disk to expand disk space on logical volume because for Ubuntu images of bento. * Change to use ssh key in ed25519 instead of rsa because it was deprecated in Jammy as default. [1] https://lists.openstack.org/pipermail/openstack-discuss/2022-October/030845.html Signed-off-by: Yasufumi Ogawa <yasufum.o@gmail.com> Change-Id: I65b209a8ff2bd46adf2a4ee507ef7eee099d1b13
31 lines
657 B
YAML
31 lines
657 B
YAML
global:
|
|
# (optional) Path of your SSH public key. Default is "~/.ssh/id_ed25519.pub".
|
|
#ssh_pub_key: "~/.ssh/id_ed25519.pub"
|
|
|
|
machines:
|
|
|
|
- hostname: controller
|
|
provider: virtualbox
|
|
# Refer to the supported boxes in "Requirements" section in README.md
|
|
box: bento/ubuntu-22.04
|
|
nof_cpus: 4
|
|
mem_size: 12
|
|
disk_size: 160
|
|
private_ips:
|
|
- 192.168.56.11
|
|
public_ips:
|
|
fwd_port_list:
|
|
- guest: 80
|
|
host: 20080
|
|
|
|
- hostname: compute
|
|
provider: virtualbox
|
|
box: bento/ubuntu-22.04
|
|
nof_cpus: 4
|
|
mem_size: 8
|
|
disk_size: 160
|
|
private_ips:
|
|
- 192.168.56.12
|
|
public_ips:
|
|
fwd_port_list:
|