mirror of
https://github.com/danny-avila/LibreChat.git
synced 2026-02-28 21:30:18 +01:00
🪣 feat: Init Containers and Custom ConfigMaps Support in Helm Chart (#10525)
This commit is contained in:
parent
8c531b921e
commit
0a2f40cc50
3 changed files with 52 additions and 0 deletions
|
|
@ -219,6 +219,13 @@ readinessProbe:
|
|||
path: /health
|
||||
port: 3080
|
||||
|
||||
# Additional init containers on the output Deployment definition.
|
||||
initContainers: {}
|
||||
# foo: # the name of the init container
|
||||
# image: busybox
|
||||
# command: ['sh', '-c', 'echo The app is starting! && sleep 5']
|
||||
# # ... add more init containers as needed
|
||||
|
||||
# Additional volumes on the output Deployment definition.
|
||||
volumes: []
|
||||
# - name: foo
|
||||
|
|
@ -269,6 +276,16 @@ dnsConfig: {}
|
|||
updateStrategy:
|
||||
type: RollingUpdate
|
||||
|
||||
# Extra ConfigMaps to be created alongside the main ones
|
||||
additionalConfigMaps: {}
|
||||
# custom: # suffix of the ConfigMap name
|
||||
# labels: {}
|
||||
# annotations: {}
|
||||
# data: {}
|
||||
# binaryData: {}
|
||||
# immutable: false
|
||||
# # ... add more ConfigMaps as needed
|
||||
|
||||
# MongoDB Parameters
|
||||
mongodb:
|
||||
enabled: true
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue