From 525f0c7f8fbc3a7940e9615a799567a7d76ae55a Mon Sep 17 00:00:00 2001 From: Anderson Cabral Filho Date: Sat, 23 May 2026 03:46:07 +0000 Subject: [PATCH] feat(gotenberg): deployment --- apps/gotenberg/Deployment.yaml | 42 ++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 apps/gotenberg/Deployment.yaml diff --git a/apps/gotenberg/Deployment.yaml b/apps/gotenberg/Deployment.yaml new file mode 100644 index 0000000..4e3ebd1 --- /dev/null +++ b/apps/gotenberg/Deployment.yaml @@ -0,0 +1,42 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: gotenberg +spec: + replicas: 1 + selector: + matchLabels: + app: gotenberg + template: + metadata: + labels: + app: gotenberg + spec: + containers: + - name: gotenberg + image: gotenberg/gotenberg:8 + args: + - gotenberg + - --api-port=3000 + - --api-timeout=120s + ports: + - containerPort: 3000 + name: http + readinessProbe: + httpGet: + path: /health + port: 3000 + initialDelaySeconds: 5 + periodSeconds: 10 + livenessProbe: + httpGet: + path: /health + port: 3000 + initialDelaySeconds: 15 + periodSeconds: 30 + resources: + requests: + cpu: 100m + memory: 256Mi + limits: + memory: 1Gi