Files
k3s-at-home/clusters/ipv6/tools/gotenberg/gotenberg.yml
Renovate Bot d1c0303080
All checks were successful
Validate Kubernetes Manifests / kubeconform (push) Successful in 15s
Update gotenberg/gotenberg Docker tag to v8.26
2026-01-28 00:02:43 +00:00

31 lines
669 B
YAML

apiVersion: apps/v1
kind: Deployment
metadata:
name: gotenberg
namespace: tools
spec:
selector:
matchLabels:
app: gotenberg
template:
metadata:
labels:
app: gotenberg
spec:
securityContext:
runAsUser: 1001
containers:
- name: gotenberg
image: gotenberg/gotenberg:8.26
command:
- sh
- -c
- |
gotenberg --chromium-disable-javascript=true --chromium-allow-list=file:///tmp/.*
ports:
- containerPort: 3000
securityContext:
readOnlyRootFilesystem: false
allowPrivilegeEscalation: false
privileged: false