mirror of
				https://github.com/open-webui/helm-charts
				synced 2025-06-26 18:16:14 +00:00 
			
		
		
		
	update
This commit is contained in:
		
							parent
							
								
									ea67916135
								
							
						
					
					
						commit
						e3ab5addb5
					
				| @ -33,6 +33,7 @@ helm upgrade --install open-webui open-webui/pipelines | |||||||
| | affinity | object | `{}` | Affinity for pod assignment | | | affinity | object | `{}` | Affinity for pod assignment | | ||||||
| | annotations | object | `{}` |  | | | annotations | object | `{}` |  | | ||||||
| | clusterDomain | string | `"cluster.local"` | Value of cluster domain | | | clusterDomain | string | `"cluster.local"` | Value of cluster domain | | ||||||
|  | | containerSecurityContext | object | `{}` | Configure container security context ref: <https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-containe> | | ||||||
| | extraEnvVars | list | `[{"name":"PIPELINES_URLS","value":"https://github.com/open-webui/pipelines/blob/main/examples/filters/detoxify_filter_pipeline.py"}]` | Additional environments variables on the output Deployment definition. These are used to pull initial Pipeline files, and help configure Pipelines with required values (e.g. Langfuse API keys) | | | extraEnvVars | list | `[{"name":"PIPELINES_URLS","value":"https://github.com/open-webui/pipelines/blob/main/examples/filters/detoxify_filter_pipeline.py"}]` | Additional environments variables on the output Deployment definition. These are used to pull initial Pipeline files, and help configure Pipelines with required values (e.g. Langfuse API keys) | | ||||||
| | extraEnvVars[0] | object | `{"name":"PIPELINES_URLS","value":"https://github.com/open-webui/pipelines/blob/main/examples/filters/detoxify_filter_pipeline.py"}` | Example pipeline to pull and load on deployment startup, see current pipelines here: https://github.com/open-webui/pipelines/blob/main/examples | | | extraEnvVars[0] | object | `{"name":"PIPELINES_URLS","value":"https://github.com/open-webui/pipelines/blob/main/examples/filters/detoxify_filter_pipeline.py"}` | Example pipeline to pull and load on deployment startup, see current pipelines here: https://github.com/open-webui/pipelines/blob/main/examples | | ||||||
| | extraInitContainers | list | `[]` | Additional init containers to add to the deployment ref: <https://kubernetes.io/docs/concepts/workloads/pods/init-containers/> | | | extraInitContainers | list | `[]` | Additional init containers to add to the deployment ref: <https://kubernetes.io/docs/concepts/workloads/pods/init-containers/> | | ||||||
| @ -60,6 +61,7 @@ helm upgrade --install open-webui open-webui/pipelines | |||||||
| | persistence.storageClass | string | `""` |  | | | persistence.storageClass | string | `""` |  | | ||||||
| | podAnnotations | object | `{}` |  | | | podAnnotations | object | `{}` |  | | ||||||
| | podLabels | object | `{}` |  | | | podLabels | object | `{}` |  | | ||||||
|  | | podSecurityContext | object | `{}` | Configure pod security context ref: <https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-container> | | ||||||
| | replicaCount | int | `1` |  | | | replicaCount | int | `1` |  | | ||||||
| | resources | object | `{}` |  | | | resources | object | `{}` |  | | ||||||
| | service.annotations | object | `{}` |  | | | service.annotations | object | `{}` |  | | ||||||
|  | |||||||
| @ -43,6 +43,10 @@ spec: | |||||||
|       {{- if .Values.serviceAccount.enable }} |       {{- if .Values.serviceAccount.enable }} | ||||||
|       serviceAccountName: {{ .Values.serviceAccount.name | default (include "pipelines.name" .) }} |       serviceAccountName: {{ .Values.serviceAccount.name | default (include "pipelines.name" .) }} | ||||||
|       {{- end }} |       {{- end }} | ||||||
|  |       {{- with .Values.podSecurityContext }} | ||||||
|  |       securityContext: | ||||||
|  |         {{- toYaml . | nindent 8 }} | ||||||
|  |       {{- end }} | ||||||
|       containers: |       containers: | ||||||
|       - name: {{ .Chart.Name }} |       - name: {{ .Chart.Name }} | ||||||
|         {{- with .Values.image }} |         {{- with .Values.image }} | ||||||
| @ -55,6 +59,10 @@ spec: | |||||||
|         {{- with .Values.resources }} |         {{- with .Values.resources }} | ||||||
|         resources: {{- toYaml . | nindent 10 }} |         resources: {{- toYaml . | nindent 10 }} | ||||||
|         {{- end }} |         {{- end }} | ||||||
|  |         {{- with .Values.containerSecurityContext }} | ||||||
|  |         securityContext: | ||||||
|  |           {{- toYaml . | nindent 10 }} | ||||||
|  |         {{- end }} | ||||||
|         volumeMounts: |         volumeMounts: | ||||||
|         - name: data |         - name: data | ||||||
|           mountPath: /app/pipelines |           mountPath: /app/pipelines | ||||||
| @ -97,4 +105,4 @@ spec: | |||||||
|       {{- end }} |       {{- end }} | ||||||
|       {{- with .Values.volumes }} |       {{- with .Values.volumes }} | ||||||
|       {{- toYaml . | nindent 6 }} |       {{- toYaml . | nindent 6 }} | ||||||
|       {{- end }} |       {{- end }} | ||||||
| @ -46,6 +46,31 @@ serviceAccount: | |||||||
|   enable: true |   enable: true | ||||||
|   automountServiceAccountToken: false |   automountServiceAccountToken: false | ||||||
| 
 | 
 | ||||||
|  | # -- Configure pod security context | ||||||
|  | # ref: <https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-container> | ||||||
|  | podSecurityContext: | ||||||
|  |   {} | ||||||
|  |   # fsGroupChangePolicy: Always | ||||||
|  |   # sysctls: [] | ||||||
|  |   # supplementalGroups: [] | ||||||
|  |   # fsGroup: 1001 | ||||||
|  | 
 | ||||||
|  | # -- Configure container security context | ||||||
|  | # ref: <https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-containe> | ||||||
|  | containerSecurityContext: | ||||||
|  |   {} | ||||||
|  |   # runAsUser: 1001 | ||||||
|  |   # runAsGroup: 1001 | ||||||
|  |   # runAsNonRoot: true | ||||||
|  |   # privileged: false | ||||||
|  |   # allowPrivilegeEscalation: false | ||||||
|  |   # readOnlyRootFilesystem: false | ||||||
|  |   # capabilities: | ||||||
|  |   #   drop: | ||||||
|  |   #     - ALL | ||||||
|  |   # seccompProfile: | ||||||
|  |   #   type: "RuntimeDefault" | ||||||
|  | 
 | ||||||
| # -- Node labels for pod assignment. | # -- Node labels for pod assignment. | ||||||
| nodeSelector: {} | nodeSelector: {} | ||||||
| 
 | 
 | ||||||
|  | |||||||
		Loading…
	
		Reference in New Issue
	
	Block a user