forked from phoenix/litellm-mirror
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:
parent
eb6a0a32f1
commit
e95efb9579
1 changed files with 1 additions and 1 deletions
|
@ -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 }}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue