From 899322f8ec0bca142952c89e48b7811d576ab306 Mon Sep 17 00:00:00 2001 From: dengzhaosen Date: Mon, 9 Sep 2024 15:09:37 +0800 Subject: [PATCH] Add configuration for nova-scheduler Change-Id: Ic1a86bc3fb699309332b97f3a5d62d98b99021d1 --- nova/Chart.yaml | 2 +- nova/values.yaml | 4 ++++ releasenotes/notes/nova.yaml | 1 + 3 files changed, 6 insertions(+), 1 deletion(-) diff --git a/nova/Chart.yaml b/nova/Chart.yaml index f6b9eb93c9..816c9792f1 100644 --- a/nova/Chart.yaml +++ b/nova/Chart.yaml @@ -14,7 +14,7 @@ apiVersion: v1 appVersion: v1.0.0 description: OpenStack-Helm Nova name: nova -version: 0.3.44 +version: 0.3.45 home: https://docs.openstack.org/nova/latest/ icon: https://www.openstack.org/themes/openstack/images/project-mascots/Nova/OpenStack_Project_Nova_vertical.png sources: diff --git a/nova/values.yaml b/nova/values.yaml index 88d83e853c..e0c5866eb6 100644 --- a/nova/values.yaml +++ b/nova/values.yaml @@ -1414,6 +1414,10 @@ conf: # server_proxyclient_address: 127.0.0.1 conductor: workers: 1 + scheduler: + max_attempts: 10 + discover_hosts_in_cells_interval: -1 + workers: 1 oslo_policy: policy_file: /etc/nova/policy.yaml oslo_concurrency: diff --git a/releasenotes/notes/nova.yaml b/releasenotes/notes/nova.yaml index bfd2e31613..87a73bcbe0 100644 --- a/releasenotes/notes/nova.yaml +++ b/releasenotes/notes/nova.yaml @@ -113,4 +113,5 @@ nova: - 0.3.42 Update images used by default - 0.3.43 Use quay.io/airshipit/kubernetes-entrypoint:latest-ubuntu_focal by default - 0.3.44 Add DPDK overrides + - 0.3.45 Add configuration for nova-scheduler ...