From 67fa248950eb7b78b47ce3440a6f86d5c5454a93 Mon Sep 17 00:00:00 2001 From: do-gyun Date: Tue, 23 Apr 2024 16:12:21 +0900 Subject: [PATCH] Use option "api_paste_config" from group "wsgi" In masakari-engine, There is a deprecated option "api_paste_config" from group "DEFAULT". So Change to use option "api_paste_config" from group "wsgi". story: 2011107 task: 49918 Change-Id: Ia4dce929cf5d57515cf3c4f11a6441cce052dd22 --- masakari/Chart.yaml | 2 +- masakari/values.yaml | 3 ++- releasenotes/notes/masakari.yaml | 1 + 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/masakari/Chart.yaml b/masakari/Chart.yaml index 0b478163d9..8571f24da3 100644 --- a/masakari/Chart.yaml +++ b/masakari/Chart.yaml @@ -14,7 +14,7 @@ apiVersion: v1 appVersion: v1.0.0 description: OpenStack-Helm Masakari name: masakari -version: 0.1.10 +version: 0.1.11 home: https://docs.openstack.org/developer/masakari icon: https://www.openstack.org/themes/openstack/images/project-mascots/Masakari/OpenStack_Project_masakari_vertical.png sources: diff --git a/masakari/values.yaml b/masakari/values.yaml index bc00bdf5aa..b61379eca7 100644 --- a/masakari/values.yaml +++ b/masakari/values.yaml @@ -561,7 +561,6 @@ conf: host_failure_recovery_threads: 1 masakari_api_workers: 1 graceful_shutdown_timeout: 5 - api_paste_config: /etc/masakari/api-paste.ini keystone_authtoken: auth_type: password service_type: instance-ha @@ -570,6 +569,8 @@ conf: # Connection string is evaluated though the endpoints for taskflow. taskflow: connection: null + wsgi: + api_paste_config: /etc/masakari/api-paste.ini masakarimonitors: DEFAULT: debug: False diff --git a/releasenotes/notes/masakari.yaml b/releasenotes/notes/masakari.yaml index 4d18f08593..c68e39f28b 100644 --- a/releasenotes/notes/masakari.yaml +++ b/releasenotes/notes/masakari.yaml @@ -11,4 +11,5 @@ masakari: - 0.1.8 Add helm hook to jobs-rabbitmq-init - 0.1.9 Enable custom annotations for Openstack pods - 0.1.10 Enable custom annotations for Openstack secrets + - 0.1.11 Move api_paste_config value to wsgi ...