From c104f84b2dfdebeda41ccf96f29f0a4060797fc7 Mon Sep 17 00:00:00 2001 From: Luke Repko Date: Tue, 5 Mar 2024 14:32:54 -0600 Subject: [PATCH] fix: update path to wsgi app in apache config We upgraded to python3 by pulling in a newer image, consequently this path needed to be updated. --- helm-configs/gnocchi/gnocchi-helm-overrides.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/helm-configs/gnocchi/gnocchi-helm-overrides.yaml b/helm-configs/gnocchi/gnocchi-helm-overrides.yaml index 699c68c0..59821714 100644 --- a/helm-configs/gnocchi/gnocchi-helm-overrides.yaml +++ b/helm-configs/gnocchi/gnocchi-helm-overrides.yaml @@ -358,7 +358,7 @@ conf: WSGIDaemonProcess gnocchi processes=1 threads=2 user=gnocchi group=gnocchi display-name=%{GROUP} WSGIProcessGroup gnocchi - WSGIScriptAlias / "/var/lib/kolla/venv/lib/python2.7/site-packages/gnocchi/rest/app.wsgi" + WSGIScriptAlias / "/var/lib/kolla/venv/lib/python3.8/site-packages/gnocchi/rest/wsgi.py" WSGIApplicationGroup %{GLOBAL} ErrorLog /dev/stderr @@ -366,7 +366,7 @@ conf: CustomLog /dev/stdout combined env=!forwarded CustomLog /dev/stdout proxy env=forwarded - + Require all granted