Helmfile issue when using transformer on open-webui chart #52

Closed
opened 2026-02-15 19:15:49 -05:00 by yindo · 1 comment
Owner

Originally created by @scodeman on GitHub (Jan 24, 2025).

See: https://github.com/helmfile/helmfile/issues/1893

Bug description
I am using the following helmfile.yaml to release openwebui and I wanted to add securityContext missing in the pipeline dependency deployment with a transformer

---
repositories:
- name: openwebui
  url: https://helm.openwebui.com
releases:
- name: openwebui
  chart: openwebui/open-webui
  version: 5.4.0
  transformers: 
   - apiVersion: builtin
     kind: ValueAddTransformer
     metadata:
       name: add-security-context-runAsNonRoot
     targets:
       - fieldPath: spec/template/spec/securityContext/runAsNonRoot
         selector:
           kind: Deployment
           name: open-webui-pipelines
     value: true

Running helmfile template -f helmfile.yaml --debug it ends up producing the following error which I can't relate with the chart

  line 8: cannot unmarshal !!map into string
  line 15: cannot unmarshal !!map into string
Originally created by @scodeman on GitHub (Jan 24, 2025). See: https://github.com/helmfile/helmfile/issues/1893 **Bug description** I am using the following helmfile.yaml to release openwebui and I wanted to add securityContext missing in the pipeline dependency deployment with a transformer ``` --- repositories: - name: openwebui url: https://helm.openwebui.com releases: - name: openwebui chart: openwebui/open-webui version: 5.4.0 transformers: - apiVersion: builtin kind: ValueAddTransformer metadata: name: add-security-context-runAsNonRoot targets: - fieldPath: spec/template/spec/securityContext/runAsNonRoot selector: kind: Deployment name: open-webui-pipelines value: true ``` Running `helmfile template -f helmfile.yaml --debug` it ends up producing the following error which I can't relate with the chart ``` line 8: cannot unmarshal !!map into string line 15: cannot unmarshal !!map into string ```
yindo closed this issue 2026-02-15 19:15:49 -05:00
Author
Owner

@scodeman commented on GitHub (Feb 4, 2025):

Issue is with helmfile not the open-webui chart as mentionned in https://github.com/helmfile/helmfile/issues/1893

@scodeman commented on GitHub (Feb 4, 2025): Issue is with helmfile not the open-webui chart as mentionned in https://github.com/helmfile/helmfile/issues/1893
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: open-webui/helm-charts#52