From e95efb9579a35994088bcbca0921c1748208ba44 Mon Sep 17 00:00:00 2001 From: Rasmus Salling Date: Thu, 15 Aug 2024 16:05:19 +0200 Subject: [PATCH] Make helm chart listen on IPv6 (and IPv4). This changes the listen statement from 0.0.0.0 to ::. On any reasonably modern linux kernel, this will open a dual-stack socket and listen on all IPv4 and IPv6 sockets. Without this litellm will not run in an IPv6 only environment. --- deploy/charts/litellm-helm/templates/deployment.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deploy/charts/litellm-helm/templates/deployment.yaml b/deploy/charts/litellm-helm/templates/deployment.yaml index 07e617581..6c4967f16 100644 --- a/deploy/charts/litellm-helm/templates/deployment.yaml +++ b/deploy/charts/litellm-helm/templates/deployment.yaml @@ -101,7 +101,7 @@ spec: imagePullPolicy: {{ .Values.image.pullPolicy }} env: - name: HOST - value: "0.0.0.0" + value: "::" - name: PORT value: {{ .Values.service.port | quote}} {{- if .Values.db.deployStandalone }}