From 14c90eb21059ce526febe1483e5e91392a99f339 Mon Sep 17 00:00:00 2001 From: Luv7804 Date: Thu, 2 Jul 2026 13:39:52 +0530 Subject: [PATCH] fix(apexkube-agent): enable websocket and SPDY/3.1 upgrades in envoy --- charts/apexkube-agent/Chart.yaml | 2 +- charts/apexkube-agent/templates/envoy-config-cm.yaml | 8 +++++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/charts/apexkube-agent/Chart.yaml b/charts/apexkube-agent/Chart.yaml index 37e5316..4709344 100644 --- a/charts/apexkube-agent/Chart.yaml +++ b/charts/apexkube-agent/Chart.yaml @@ -4,5 +4,5 @@ description: A Helm chart for deploying the ApexKube agent with Envoy and WireGu maintainers: - name: improwised type: application -version: 1.2.0 +version: 1.2.1 appVersion: "1.0.0" diff --git a/charts/apexkube-agent/templates/envoy-config-cm.yaml b/charts/apexkube-agent/templates/envoy-config-cm.yaml index b295ca9..dc609fa 100644 --- a/charts/apexkube-agent/templates/envoy-config-cm.yaml +++ b/charts/apexkube-agent/templates/envoy-config-cm.yaml @@ -81,7 +81,13 @@ data: domains: ["*"] routes: - match: { prefix: "/" } - route: { cluster: service_backend } + route: + cluster: service_backend + upgrade_configs: + - upgrade_type: "websocket" + enabled: true + - upgrade_type: "SPDY/3.1" + enabled: true clusters: - name: service_backend