Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions etc/kayobe/kolla/config/bifrost/bifrost.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
---
# Use images from Ark.
{% if stackhpc_download_overcloud_images %}
use_cirros: true
{% if os_distribution == 'ubuntu' %}
cirros_deploy_image_upstream_url: "{{ stackhpc_ubuntu_overcloud_host_image_url }}"
{% elif os_distribution == 'rocky' %}
cirros_deploy_image_upstream_url: "{{ stackhpc_rocky_overcloud_host_image_url }}"
{% else %}
cirros_deploy_image_upstream_url: "{{ stackhpc_centos_overcloud_host_image_url }}"
{% endif %}
{% endif %}
17 changes: 17 additions & 0 deletions etc/kayobe/stackhpc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,23 @@ stackhpc_kolla_source_version: "stackhpc/{{ openstack_release }}"
stackhpc_kolla_ansible_source_url: "https://github.com/stackhpc/kolla-ansible"
stackhpc_kolla_ansible_source_version: "stackhpc/{{ openstack_release }}"

###############################################################################
# Overcloud host image source

stackhpc_download_overcloud_images: false

# Ubuntu overcloud host image source
stackhpc_ubuntu_overcloud_host_image_url: "{{ stackhpc_release_pulp_content_url }}/kayobe-images/{{ openstack_release }}/ubuntu/focal/{{ stackhpc_ubuntu_overcloud_host_image }}/overcloud-ubuntu-focal.qcow2"
stackhpc_ubuntu_overcloud_host_image_version: "latest"

# Rocky overcloud host image source
stackhpc_rocky_overcloud_host_image_url: "{{ stackhpc_release_pulp_content_url }}/kayobe-images/{{ openstack_release }}/rocky/8/{{ stackhpc_rocky_overcloud_host_image_version }}/overcloud-rocky-8.qcow2"
stackhpc_rocky_overcloud_host_image_version: "latest"

# CentOS overcloud host image source
stackhpc_centos_overcloud_host_image_url: "{{ stackhpc_release_pulp_content_url }}/kayobe-images/{{ openstack_release }}/centos/stream-8/{{ stackhpc_centos_overcloud_host_image_version }}/overcloud-centos-stream-8.qcow2"
stackhpc_centos_overcloud_host_image_version: "latest"

###############################################################################
# Container image registry

Expand Down