You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I would like to suggest an enhancement to the LiteLLM Helm chart: the ability to define initContainers in the deployment.
Motivation:
Some users need to inject additional certificate stores or perform pre-start initialization steps in the container before the main LiteLLM process starts. Currently, the chart only supports extra environment variables and extra containers, but not init containers.
Proposed Solution:
Introduce a new values.yaml key, e.g., extraInitContainers, which allows users to define a list of Kubernetes init containers. These would be inserted in the pod spec before the main container(s). Example usage in values.yaml:
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
-
Hi team,
I would like to suggest an enhancement to the LiteLLM Helm chart: the ability to define
initContainersin the deployment.Motivation:
Some users need to inject additional certificate stores or perform pre-start initialization steps in the container before the main LiteLLM process starts. Currently, the chart only supports extra environment variables and extra containers, but not init containers.
Proposed Solution:
Introduce a new
values.yamlkey, e.g.,extraInitContainers, which allows users to define a list of Kubernetes init containers. These would be inserted in the pod spec before the main container(s). Example usage invalues.yaml:This would then be rendered in the deployment template under
spec.template.spec.initContainers, before the main container.Benefits:
values.yaml.I think this could be a useful addition for deployments that require custom certificates or other preparatory steps.
Thanks for considering this feature!
Beta Was this translation helpful? Give feedback.
All reactions