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.
This commit is contained in:
Rasmus Salling 2024-08-15 16:05:19 +02:00
parent eb6a0a32f1
commit e95efb9579
No known key found for this signature in database
GPG key ID: F5F30E0CE3B302B8

View file

@ -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 }}