Skip to content
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ pip-log.txt
*~
.*.swp
.*sw?
.vscode/*

# Files generated by Ansible
ansible/*.retry
Expand Down
4 changes: 2 additions & 2 deletions etc/kayobe/containers/pulp/post.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
url: "{{ pulp_url }}/pulp/api/v3/status/"
register: pulp_status
until: pulp_status is success
retries: 30
delay: 2
retries: "{{ pulp_timeout_retries | default(30) }}"
delay: "{{ pulp_timeout_delay | default(3) }}"

- name: Set the Pulp admin password
become: true
Expand Down
12 changes: 12 additions & 0 deletions etc/kayobe/kolla.yml
Original file line number Diff line number Diff line change
Expand Up @@ -116,10 +116,18 @@ kolla_sources:
type: git
location: https://github.com/stackhpc/stackhpc-inspector-plugins.git
reference: 1.3.0
cinder-base:
type: git
location: https://github.com/stackhpc/cinder.git
reference: stackhpc/{{ openstack_release }}
cloudkitty-base:
type: git
location: https://github.com/stackhpc/cloudkitty.git
reference: stackhpc/{{ openstack_release }}
glance-base:
type: git
location: https://github.com/stackhpc/glance.git
reference: stackhpc/{{ openstack_release }}
horizon-plugin-cloudkitty-dashboard:
type: git
location: https://github.com/stackhpc/cloudkitty-dashboard.git
Expand All @@ -141,6 +149,10 @@ kolla_sources:
type: git
location: https://github.com/stackhpc/networking-generic-switch.git
reference: stackhpc/{{ openstack_release }}
nova-base:
type: git
location: https://github.com/stackhpc/nova.git
reference: stackhpc/{{ openstack_release }}

###############################################################################
# Kolla image build configuration.
Expand Down
6 changes: 6 additions & 0 deletions etc/kayobe/kolla/globals.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,20 @@ enable_docker_repo: {% raw %}"{{ 'overcloud' not in group_names or ansible_facts

{% if kolla_base_distro == 'centos' %}
bifrost_tag: yoga-20221007T134036
cinder_tag: yoga-20230125T113143
glance_tag: yoga-20230125T113143
magnum_tag: yoga-20230110T142129
neutron_tag: yoga-20230104T155323
nova_tag: yoga-20230125T113143
ovn_tag: yoga-20230119T125748
prometheus_openstack_exporter_tag: yoga-20221128T164623
{% else %}
bifrost_tag: yoga-20221215T142947
cinder_tag: yoga-20230125T114437
glance_tag: yoga-20230125T114437
magnum_tag: yoga-20230110T144737
neutron_tag: yoga-20230104T163118
nova_tag: yoga-20230125T114437
{% endif %}

om_enable_rabbitmq_high_availability: true
Expand Down