apiVersion: apps/v1 kind: Deployment metadata: name: excalidraw namespace: excalidraw spec: replicas: 1 selector: matchLabels: app: excalidraw template: metadata: labels: app: excalidraw spec: restartPolicy: Always terminationGracePeriodSeconds: 10 containers: - name: excalidraw image: excalidraw/excalidraw:latest resources: requests: cpu: 50m memory: 128Mi limits: cpu: 200m memory: 256Mi ports: - containerPort: 80