used podman kube generate <containername>

This commit is contained in:
2025-11-06 18:35:26 +01:00
commit fa5acf9c2b

32
open-webui.yaml Normal file
View File

@@ -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