mirror of
https://github.com/open-webui/helm-charts
synced 2025-06-04 03:49:27 +00:00
feat: add support for hostAliases
This commit is contained in:
parent
a609ae613b
commit
e8dbf957b1
@ -4,7 +4,7 @@ dependencies:
|
|||||||
version: 1.6.0
|
version: 1.6.0
|
||||||
- name: pipelines
|
- name: pipelines
|
||||||
repository: https://helm.openwebui.com
|
repository: https://helm.openwebui.com
|
||||||
version: 0.2.0
|
version: 0.4.0
|
||||||
- name: tika
|
- name: tika
|
||||||
repository: https://apache.jfrog.io/artifactory/tika
|
repository: https://apache.jfrog.io/artifactory/tika
|
||||||
version: 2.9.0
|
version: 2.9.0
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
apiVersion: v2
|
apiVersion: v2
|
||||||
name: open-webui
|
name: open-webui
|
||||||
version: 5.18.0
|
version: 5.19.0
|
||||||
appVersion: 0.5.16
|
appVersion: 0.5.16
|
||||||
home: https://www.openwebui.com/
|
home: https://www.openwebui.com/
|
||||||
icon: >-
|
icon: >-
|
||||||
|
@ -105,6 +105,7 @@ helm upgrade --install open-webui open-webui/open-webui
|
|||||||
| tika.enabled | bool | `false` | Automatically install Apache Tika to extend Open WebUI |
|
| tika.enabled | bool | `false` | Automatically install Apache Tika to extend Open WebUI |
|
||||||
| tolerations | list | `[]` | Tolerations for pod assignment |
|
| tolerations | list | `[]` | Tolerations for pod assignment |
|
||||||
| topologySpreadConstraints | list | `[]` | Topology Spread Constraints for pod assignment |
|
| topologySpreadConstraints | list | `[]` | Topology Spread Constraints for pod assignment |
|
||||||
|
| hostAliases | list | `[]` | HostAliases to be added to hosts-file of each container |
|
||||||
| volumeMounts | object | `{"container":[],"initContainer":[]}` | Configure container volume mounts ref: <https://kubernetes.io/docs/tasks/configure-pod-container/configure-volume-storage/> |
|
| volumeMounts | object | `{"container":[],"initContainer":[]}` | Configure container volume mounts ref: <https://kubernetes.io/docs/tasks/configure-pod-container/configure-volume-storage/> |
|
||||||
| volumes | list | `[]` | Configure pod volumes ref: <https://kubernetes.io/docs/tasks/configure-pod-container/configure-volume-storage/> |
|
| volumes | list | `[]` | Configure pod volumes ref: <https://kubernetes.io/docs/tasks/configure-pod-container/configure-volume-storage/> |
|
||||||
| websocket.enabled | bool | `false` | Enables websocket support in Open WebUI with env `ENABLE_WEBSOCKET_SUPPORT` |
|
| websocket.enabled | bool | `false` | Enables websocket support in Open WebUI with env `ENABLE_WEBSOCKET_SUPPORT` |
|
||||||
|
@ -172,6 +172,10 @@ spec:
|
|||||||
topologySpreadConstraints:
|
topologySpreadConstraints:
|
||||||
{{- toYaml . | nindent 8 }}
|
{{- toYaml . | nindent 8 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
{{- with .Values.hostAliases }}
|
||||||
|
hostAliases:
|
||||||
|
{{- toYaml . | nindent 8 }}
|
||||||
|
{{- end }}
|
||||||
volumes:
|
volumes:
|
||||||
{{- if and .Values.persistence.enabled .Values.persistence.existingClaim }}
|
{{- if and .Values.persistence.enabled .Values.persistence.existingClaim }}
|
||||||
- name: data
|
- name: data
|
||||||
|
@ -219,6 +219,9 @@ affinity: {}
|
|||||||
# -- Topology Spread Constraints for pod assignment
|
# -- Topology Spread Constraints for pod assignment
|
||||||
topologySpreadConstraints: []
|
topologySpreadConstraints: []
|
||||||
|
|
||||||
|
# -- HostAliases to be added to hosts-file of each container
|
||||||
|
hostAliases: []
|
||||||
|
|
||||||
# -- Service values to expose Open WebUI pods to cluster
|
# -- Service values to expose Open WebUI pods to cluster
|
||||||
service:
|
service:
|
||||||
type: ClusterIP
|
type: ClusterIP
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
apiVersion: v2
|
apiVersion: v2
|
||||||
name: pipelines
|
name: pipelines
|
||||||
version: 0.3.0
|
version: 0.4.0
|
||||||
appVersion: "alpha"
|
appVersion: "alpha"
|
||||||
|
|
||||||
home: https://github.com/open-webui/pipelines
|
home: https://github.com/open-webui/pipelines
|
||||||
|
@ -71,6 +71,7 @@ helm upgrade --install open-webui open-webui/pipelines
|
|||||||
| serviceAccount.enable | bool | `true` | |
|
| serviceAccount.enable | bool | `true` | |
|
||||||
| strategy | object | `{}` | Strategy for updating the deployment |
|
| strategy | object | `{}` | Strategy for updating the deployment |
|
||||||
| tolerations | list | `[]` | Tolerations for pod assignment |
|
| tolerations | list | `[]` | Tolerations for pod assignment |
|
||||||
|
| hostAliases | list | `[]` | HostAliases to be added to hosts-file of each container |
|
||||||
| volumeMounts | list | `[]` | Configure container volume mounts ref: <https://kubernetes.io/docs/tasks/configure-pod-container/configure-volume-storage/> |
|
| volumeMounts | list | `[]` | Configure container volume mounts ref: <https://kubernetes.io/docs/tasks/configure-pod-container/configure-volume-storage/> |
|
||||||
| volumes | list | `[]` | Configure pod volumes ref: <https://kubernetes.io/docs/tasks/configure-pod-container/configure-volume-storage/> |
|
| volumes | list | `[]` | Configure pod volumes ref: <https://kubernetes.io/docs/tasks/configure-pod-container/configure-volume-storage/> |
|
||||||
|
|
||||||
|
@ -74,6 +74,10 @@ spec:
|
|||||||
affinity:
|
affinity:
|
||||||
{{- toYaml . | nindent 8 }}
|
{{- toYaml . | nindent 8 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
{{- with .Values.hostAliases }}
|
||||||
|
hostAliases:
|
||||||
|
{{- toYaml . | nindent 8 }}
|
||||||
|
{{- end }}
|
||||||
volumes:
|
volumes:
|
||||||
{{- if and .Values.persistence.enabled .Values.persistence.existingClaim }}
|
{{- if and .Values.persistence.enabled .Values.persistence.existingClaim }}
|
||||||
- name: data
|
- name: data
|
||||||
|
@ -55,6 +55,9 @@ tolerations: []
|
|||||||
# -- Affinity for pod assignment
|
# -- Affinity for pod assignment
|
||||||
affinity: {}
|
affinity: {}
|
||||||
|
|
||||||
|
# -- HostAliases to be added to hosts-file of each container
|
||||||
|
hostAliases: []
|
||||||
|
|
||||||
service:
|
service:
|
||||||
type: ClusterIP
|
type: ClusterIP
|
||||||
annotations: {}
|
annotations: {}
|
||||||
|
Loading…
Reference in New Issue
Block a user