diff --git a/charts/open-webui/Chart.yaml b/charts/open-webui/Chart.yaml index b0b032c..06b87e2 100644 --- a/charts/open-webui/Chart.yaml +++ b/charts/open-webui/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v2 name: open-webui -version: 4.0.1 +version: 4.0.2 appVersion: 0.4.2 home: https://www.openwebui.com/ icon: >- diff --git a/charts/open-webui/templates/service-account.yaml b/charts/open-webui/templates/service-account.yaml index 539bc07..ba4fe9a 100644 --- a/charts/open-webui/templates/service-account.yaml +++ b/charts/open-webui/templates/service-account.yaml @@ -1,4 +1,4 @@ -{{- if .Values.serviceAccount.create }} +{{- if .Values.serviceAccount.enable }} apiVersion: v1 kind: ServiceAccount metadata: diff --git a/charts/open-webui/templates/workload-manager.yaml b/charts/open-webui/templates/workload-manager.yaml index 5d4ca9c..bdbc497 100644 --- a/charts/open-webui/templates/workload-manager.yaml +++ b/charts/open-webui/templates/workload-manager.yaml @@ -41,7 +41,7 @@ spec: {{- end }} command: ['sh', '-c', 'cp -R -n /app/backend/data/* /tmp/app-data/'] {{- with .Values.containerSecurityContext }} - {{- with .Values.copy-app-data.resources }} + {{- with .Values.copyAppData.resources }} resources: {{- toYaml . | nindent 10 }} {{- end }} securityContext: @@ -58,7 +58,7 @@ spec: {{- end }} enableServiceLinks: false automountServiceAccountToken: {{ .Values.serviceAccount.automountServiceAccountToken }} - {{- if .Values.serviceAccount.create }} + {{- if .Values.serviceAccount.enable }} serviceAccountName: {{ .Values.serviceAccount.name | default (include "open-webui.name" .) }} {{- end }} {{- with .Values.podSecurityContext }} diff --git a/charts/open-webui/values.yaml b/charts/open-webui/values.yaml index 1c9ddab..7681935 100644 --- a/charts/open-webui/values.yaml +++ b/charts/open-webui/values.yaml @@ -44,7 +44,7 @@ image: pullPolicy: "IfNotPresent" serviceAccount: - create: true + enable: true name: "" annotations: {} automountServiceAccountToken: false