File tree Expand file tree Collapse file tree 7 files changed +34
-6
lines changed
ansible/inventory/group_vars/all
playbooks/kayobe-infra-vm-base Expand file tree Collapse file tree 7 files changed +34
-6
lines changed Original file line number Diff line number Diff line change @@ -46,15 +46,15 @@ infra_vm_root_format: qcow2
46
46
# https://dl.rockylinux.org/pub/rocky/9/images/x86_64/Rocky-9-GenericCloud.latest.x86_64.qcow2
47
47
# when os_distribution is "rocky",
48
48
# or
49
- # "https://cloud.centos.org/centos/9-stream/x86_64/images/CentOS-Stream-GenericCloud-9-latest.x86_64.qcow2"
49
+ # "https://cloud.centos.org/centos/9-stream/x86_64/images/CentOS-Stream-GenericCloud-x86_64- 9-latest.x86_64.qcow2"
50
50
# otherwise.
51
51
infra_vm_root_image: >-
52
52
{%- if os_distribution == 'ubuntu' %}
53
53
https://cloud-images.ubuntu.com/noble/current/noble-server-cloudimg-amd64.img
54
54
{%- elif os_distribution == 'rocky' %}
55
55
https://dl.rockylinux.org/pub/rocky/9/images/x86_64/Rocky-9-GenericCloud.latest.x86_64.qcow2
56
56
{%- else -%}
57
- https://cloud.centos.org/centos/9-stream/x86_64/images/CentOS-Stream-GenericCloud-9-latest.x86_64.qcow2
57
+ https://cloud.centos.org/centos/9-stream/x86_64/images/CentOS-Stream-GenericCloud-x86_64- 9-latest.x86_64.qcow2
58
58
{%- endif %}
59
59
60
60
# Capacity of the infra VM data volume.
Original file line number Diff line number Diff line change 35
35
# https://dl.rockylinux.org/pub/rocky/9/images/x86_64/Rocky-9-GenericCloud.latest.x86_64.qcow2
36
36
# when os_distribution is "rocky",
37
37
# or
38
- # "https://cloud.centos.org/centos/9-stream/x86_64/images/CentOS-Stream-GenericCloud-9-latest.x86_64.qcow2"
38
+ # "https://cloud.centos.org/centos/9-stream/x86_64/images/CentOS-Stream-GenericCloud-x86_64- 9-latest.x86_64.qcow2"
39
39
# otherwise.
40
40
# infra_vm_root_image:
41
41
Original file line number Diff line number Diff line change 86
86
# case Quay.io will be used.
87
87
# kolla_docker_registry:
88
88
89
- # Docker namespace to use for Kolla images. Default is 'kolla'.
89
+ # Docker namespace to use for Kolla images. Default is 'openstack. kolla'.
90
90
# kolla_docker_namespace:
91
91
92
92
# Username to use to access a docker registry. Default is not set, in which
Original file line number Diff line number Diff line change 35
35
# https://dl.rockylinux.org/pub/rocky/9/images/x86_64/Rocky-9-GenericCloud.latest.x86_64.qcow2
36
36
# when os_distribution is "rocky",
37
37
# or
38
- # "https://cloud.centos.org/centos/9-stream/x86_64/images/CentOS-Stream-GenericCloud-9-latest.x86_64.qcow2"
38
+ # "https://cloud.centos.org/centos/9-stream/x86_64/images/CentOS-Stream-GenericCloud-x86_64- 9-latest.x86_64.qcow2"
39
39
# otherwise.
40
40
# seed_vm_root_image:
41
41
Original file line number Diff line number Diff line change @@ -31,9 +31,11 @@ infra_vm_vcpus: 1
31
31
# Reduce the memory footprint of the infra VM.
32
32
infra_vm_memory_mb: "{{ 1 * 1024 }}"
33
33
34
- # Use cirros rather than CentOS for the VM.
34
+ {% if infra_vm_use_cirros | default (true ) %}
35
+ # Use cirros rather than distribution cloud image for the VM.
35
36
infra_vm_bootstrap_user: cirros
36
37
infra_vm_root_image: /opt/cache/files/cirros-0.5.3-x86_64-disk.img
38
+ {% endif %}
37
39
38
40
# Cirros doesn't load cdom drivers by default.
39
41
vm_configdrive_device: disk
Original file line number Diff line number Diff line change 472
472
name : kayobe-infra-vm-ubuntu-noble
473
473
parent : kayobe-infra-vm-base
474
474
nodeset : kayobe-ubuntu-noble
475
+
476
+ - job :
477
+ name : kayobe-infra-vm-centos9s-cloud-image
478
+ parent : kayobe-infra-vm-base
479
+ nodeset : kayobe-centos9s
480
+ voting : false
481
+ vars :
482
+ infra_vm_use_cirros : false
483
+
484
+ - job :
485
+ name : kayobe-infra-vm-rocky9-cloud-image
486
+ parent : kayobe-infra-vm-base
487
+ nodeset : kayobe-rocky9
488
+ vars :
489
+ infra_vm_use_cirros : false
490
+
491
+ - job :
492
+ name : kayobe-infra-vm-ubuntu-noble-cloud-image
493
+ parent : kayobe-infra-vm-base
494
+ nodeset : kayobe-ubuntu-noble
495
+ voting : false
496
+ vars :
497
+ infra_vm_use_cirros : false
Original file line number Diff line number Diff line change 71
71
72
72
experimental :
73
73
jobs :
74
+ - kayobe-infra-vm-centos9s-cloud-image
75
+ - kayobe-infra-vm-rocky9-cloud-image
76
+ - kayobe-infra-vm-ubuntu-noble-cloud-image
74
77
- kayobe-overcloud-centos9s
75
78
- kayobe-overcloud-host-configure-centos9s
76
79
- kayobe-seed-images-centos9s
You can’t perform that action at this time.
0 commit comments