From fa5acf9c2b845a6fc5edd7a828304dc7ceff2a9a Mon Sep 17 00:00:00 2001 From: Udo Waechter Date: Thu, 6 Nov 2025 18:35:26 +0100 Subject: [PATCH] used podman kube generate --- open-webui.yaml | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 open-webui.yaml diff --git a/open-webui.yaml b/open-webui.yaml new file mode 100644 index 0000000..11c777e --- /dev/null +++ b/open-webui.yaml @@ -0,0 +1,32 @@ +# Save the output of this file and use kubectl create -f to import +# it into Kubernetes. +# +# Created with podman-5.6.2 + +# NOTE: If you generated this yaml from an unprivileged and rootless podman container on an SELinux +# enabled system, check the podman generate kube man page for steps to follow to ensure that your pod/container +# has the right permissions to access the volumes added. +--- +apiVersion: v1 +kind: Pod +metadata: + creationTimestamp: "2025-11-06T17:34:58Z" + labels: + app: open-webui-pod + name: open-webui-pod +spec: + containers: + - image: ghcr.io/open-webui/open-webui:main + name: open-webui + ports: + - containerPort: 8080 + hostPort: 3000 + securityContext: {} + volumeMounts: + - mountPath: /app/backend/data + name: open-webui-pvc + volumes: + - name: open-webui-pvc + persistentVolumeClaim: + claimName: open-webui +