File tree Expand file tree Collapse file tree 3 files changed +34
-4
lines changed Expand file tree Collapse file tree 3 files changed +34
-4
lines changed Original file line number Diff line number Diff line change @@ -3,8 +3,8 @@ OpenStack Configuration
3
3
=============================================
4
4
5
5
This project contains Ansible playbooks and configuration of infrastructure on
6
- an existing OpenStack cloud for the OpenStack
7
- system.
6
+ an existing OpenStack cloud for the OpenStack system. (Supported up to Yoga
7
+ release.)
8
8
9
9
Preparation
10
10
===========
Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ os_images_force_rebuild: false
16
16
# List of Glance images. Format is as required by the stackhpc.os-images role.
17
17
openstack_images :
18
18
- " {{ openstack_image_centos_stream8 }}"
19
+ - " {{ openstack_image_cirros_0_6_0 }}"
19
20
- " {{ openstack_image_rocky8 }}"
20
21
- " {{ openstack_image_ubuntu_focal }}"
21
22
@@ -24,6 +25,8 @@ openstack_image_centos_stream8:
24
25
name : " CentOS-stream8"
25
26
type : raw
26
27
elements :
28
+ # Required for UEFI mode:
29
+ - " block-device-efi"
27
30
- " centos"
28
31
- " cloud-init"
29
32
- " selinux-permissive"
@@ -35,17 +38,37 @@ openstack_image_centos_stream8:
35
38
env :
36
39
YUM : dnf
37
40
DIB_RELEASE : " 8-stream"
41
+ packages :
42
+ # Next 3 are required for UEFI mode:
43
+ - " gdisk"
44
+ - " efibootmgr"
45
+ - " efivar"
38
46
properties :
39
47
os_type : " linux"
40
48
os_distro : " centos"
41
49
os_version : " 8-stream"
42
50
hw_rng_model : " virtio"
43
51
52
+ # Cirros 0.6.0
53
+ openstack_image_cirros_0_6_0 :
54
+ name : " cirros-0.6.0"
55
+ type : qcow2
56
+ image_url : " https://github.com/cirros-dev/cirros/releases/download/0.6.0/cirros-0.6.0-x86_64-disk.img"
57
+ checksum : " md5:f4027b89e99e238184e13089a3155b74"
58
+ is_public : True
59
+ properties :
60
+ os_type : " linux"
61
+ os_distro : " cirros"
62
+ os_version : " 0.6.0"
63
+ hw_rng_model : " virtio"
64
+
44
65
# Rocky Linux 8.
45
66
openstack_image_rocky8 :
46
67
name : " Rocky8"
47
68
type : raw
48
69
elements :
70
+ # Required for UEFI mode:
71
+ - " block-device-efi"
49
72
- " rocky-container"
50
73
- " cloud-init"
51
74
- " epel"
@@ -57,8 +80,12 @@ openstack_image_rocky8:
57
80
- " openssh-server"
58
81
is_public : True
59
82
packages :
60
- - bash-completion
61
- - vim-enhanced
83
+ - " bash-completion"
84
+ - " vim-enhanced"
85
+ # Next 3 are required for UEFI mode:
86
+ - " gdisk"
87
+ - " efibootmgr"
88
+ - " efivar"
62
89
env :
63
90
YUM : dnf
64
91
DIB_CONTAINERFILE_RUNTIME : docker
@@ -76,6 +103,8 @@ openstack_image_ubuntu_focal:
76
103
type : raw
77
104
is_public : True
78
105
elements :
106
+ # Required for UEFI mode:
107
+ - " block-device-efi"
79
108
- " cloud-init"
80
109
- " cloud-init-datasources"
81
110
- " dhcp-all-interfaces"
Original file line number Diff line number Diff line change 9
9
10
10
collections :
11
11
- name : openstack.cloud
12
+ version : ' <2'
You can’t perform that action at this time.
0 commit comments