From 1dcdb3fbf1efec5a74d08e423fcb9888d5d47f7d Mon Sep 17 00:00:00 2001 From: Dimitri Savineau Date: Tue, 9 Jun 2026 17:58:01 -0400 Subject: [PATCH] Set WORKER_KIND to websocket on daphne This adds the EDA_WORKER_KIND environment variable to the EDA daphne container so the authentication classes loaded by the EDA application are set to a different value. Signed-off-by: Dimitri Savineau --- roles/eda/templates/eda-api.deployment.yaml.j2 | 2 ++ 1 file changed, 2 insertions(+) diff --git a/roles/eda/templates/eda-api.deployment.yaml.j2 b/roles/eda/templates/eda-api.deployment.yaml.j2 index ac8a2352..0021d22f 100644 --- a/roles/eda/templates/eda-api.deployment.yaml.j2 +++ b/roles/eda/templates/eda-api.deployment.yaml.j2 @@ -411,6 +411,8 @@ spec: secretKeyRef: name: '{{ db_fields_encryption_secret_name }}' key: secret_key + - name: EDA_WORKER_KIND + value: "websocket" {% if combined_api.resource_requirements is defined %} resources: {{ combined_api.resource_requirements }} {% endif %}