Move extraEnvVars to Workload from ConfigMap

This commit is contained in:
Pramod Valavala
2024-09-27 19:54:49 -04:00
parent 4ee3936555
commit a16cdd4477
4 changed files with 18 additions and 28 deletions

View File

@@ -43,7 +43,7 @@ helm upgrade --install open-webui open-webui/open-webui
| annotations | object | `{}` | |
| 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":"OPENAI_API_KEY","value":"0p3n-w3bu!"}]` | Env vars added to the configmap and mounted to the Open WebUI deployment. Most up-to-date environment variables can be found here: https://docs.openwebui.com/getting-started/env-configuration/ |
| extraEnvVars | list | `[{"name":"OPENAI_API_KEY","value":"0p3n-w3bu!"}]` | Env vars added to the Open WebUI deployment. Most up-to-date environment variables can be found here: https://docs.openwebui.com/getting-started/env-configuration/ |
| extraEnvVars[0] | object | `{"name":"OPENAI_API_KEY","value":"0p3n-w3bu!"}` | Default API key value for Pipelines. Should be updated in a production deployment, or be changed to the required API key if not using Pipelines |
| image | object | `{"pullPolicy":"IfNotPresent","repository":"ghcr.io/open-webui/open-webui","tag":""}` | Open WebUI image tags can be found here: https://github.com/open-webui/open-webui/pkgs/container/open-webui |
| imagePullSecrets | list | `[]` | Configure imagePullSecrets to use private registry ref: <https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry> |

View File

@@ -1,22 +0,0 @@
{{- if or .Values.extraEnvVars .Values.ollama.enabled }}
apiVersion: v1
kind: ConfigMap
metadata:
name: {{ include "open-webui.name" . }}-env
labels:
{{- include "open-webui.labels" . | nindent 4 }}
data:
{{- if .Values.ollama.enabled }}
OLLAMA_BASE_URLS: {{ include "ollamaBaseUrls" . | quote }}
{{- else }}
ENABLE_OLLAMA_API: "False"
{{- end }}
{{- if .Values.pipelines.enabled }}
OPENAI_API_BASE_URL: {{ include "pipelines.serviceEndpoint" . }}
{{- else if .Values.openaiBaseApiUrl }}
OPENAI_API_BASE_URL: {{ .Values.openaiBaseApiUrl | quote }}
{{- end }}
{{- range .Values.extraEnvVars }}
{{ .name }}: {{ .value | quote }}
{{- end }}
{{- end }}

View File

@@ -72,10 +72,22 @@ spec:
volumeMounts:
- name: data
mountPath: /app/backend/data
{{- if or .Values.extraEnvVars .Values.ollama.enabled }}
envFrom:
- configMapRef:
name: {{ include "open-webui.name" . }}-env
env:
{{- if or .Values.ollamaUrls .Values.ollama.enabled }}
- name: "OLLAMA_BASE_URLS"
value: {{ include "ollamaBaseUrls" . | quote }}
{{- else }}
- name: "ENABLE_OLLAMA_API"
value: "False"
{{- end }}
- name: "OPENAI_API_BASE_URL"
{{- if .Values.pipelines.enabled }}
value: {{ include "pipelines.serviceEndpoint" . }}
{{- else if .Values.openaiBaseApiUrl }}
value: {{ .Values.openaiBaseApiUrl | quote }}
{{- end }}
{{- if .Values.extraEnvVars }}
{{- toYaml .Values.extraEnvVars | nindent 8 }}
{{- end }}
tty: true
{{- with .Values.nodeSelector }}

View File

@@ -92,7 +92,7 @@ service:
# -- OpenAI base API URL to use. Defaults to the Pipelines service endpoint when Pipelines are enabled, and "https://api.openai.com/v1" if Pipelines are not enabled and this value is blank
openaiBaseApiUrl: ""
# -- Env vars added to the configmap and mounted to the Open WebUI deployment. Most up-to-date environment variables can be found here: https://docs.openwebui.com/getting-started/env-configuration/
# -- Env vars added to the Open WebUI deployment. Most up-to-date environment variables can be found here: https://docs.openwebui.com/getting-started/env-configuration/
extraEnvVars:
# -- Default API key value for Pipelines. Should be updated in a production deployment, or be changed to the required API key if not using Pipelines
- name: OPENAI_API_KEY