Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: update openstack options for rabbitmq quorum and stream queue types #492

Draft
wants to merge 3 commits into
base: main
Choose a base branch
from
Draft
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
8 changes: 8 additions & 0 deletions components/glance/aio-values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,14 @@ conf:
# under heavy load, which results in liveness probe failures in
# Kubernetes environment.
processes: 2
glance:
oslo_messaging_rabbit:
rabbit_quorum_queue: true
rabbit_transient_quorum_queue: true
use_queue_manager: true
rabbit_stream_fanout: true
rabbit_qos_prefetch_count: 1000
rabbit_ha_queues: false

manifests:
job_db_init: false
Expand Down
8 changes: 7 additions & 1 deletion components/ironic/aio-values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,13 @@ conf:
dhcp:
dhcp_provider: dnsmasq
oslo_messaging_rabbit:
rabbit_ha_queues: true
rabbit_quorum_queue: true
rabbit_transient_quorum_queue: true
use_queue_manager: true
rabbit_stream_fanout: true
rabbit_qos_prefetch_count: 1000
rabbit_ha_queues: false

pxe:
images_path: /var/lib/understack/master_iso_images
instance_master_path: /var/lib/understack/master_iso_images
Expand Down
8 changes: 8 additions & 0 deletions components/keystone/aio-values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -245,6 +245,14 @@ conf:
# - https://yourinstance.of.horizon.example.com/auth/websso/
DEFAULT:
max_token_size: 512
oslo_messaging_rabbit:
rabbit_quorum_queue: true
rabbit_transient_quorum_queue: true
use_queue_manager: true
rabbit_stream_fanout: true
rabbit_qos_prefetch_count: 1000
rabbit_ha_queues: false

wsgi_keystone: |
{{- $portInt := tuple "identity" "service" "api" $ | include "helm-toolkit.endpoints.endpoint_port_lookup" }}

Expand Down
7 changes: 7 additions & 0 deletions components/neutron/aio-values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,13 @@ conf:
# we aren't using availability zones so having calls attempt to add things to
# availability zones won't work.
default_availability_zones: ""
oslo_messaging_rabbit:
rabbit_quorum_queue: true
rabbit_transient_quorum_queue: true
use_queue_manager: true
rabbit_stream_fanout: true
rabbit_qos_prefetch_count: 1000
rabbit_ha_queues: false

# disable the neutron-ironic-agent from loading a non-existent config
pod:
Expand Down
9 changes: 8 additions & 1 deletion components/nova/aio-values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,14 @@ conf:
# adjust default quotas to make it possible to use baremetal
cores: 512
ram: 512000

nova:
oslo_messaging_rabbit:
rabbit_quorum_queue: true
rabbit_transient_quorum_queue: true
use_queue_manager: true
rabbit_stream_fanout: true
rabbit_qos_prefetch_count: 1000
rabbit_ha_queues: false

console:
# we are working with baremetal nodes and not QEMU so we don't need novnc or spice
Expand Down