diff --git a/deployments/excalidraw/deployment.yaml b/deployments/excalidraw/deployment.yaml new file mode 100644 index 0000000..061c11d --- /dev/null +++ b/deployments/excalidraw/deployment.yaml @@ -0,0 +1,29 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: excalidraw + namespace: apps + labels: + app: excalidraw +spec: + replicas: 1 + selector: + matchLabels: + app: excalidraw + template: + metadata: + labels: + app: excalidraw + spec: + containers: + - name: excalidraw + image: excalidraw/excalidraw:latest + ports: + - containerPort: 80 + resources: + requests: + cpu: 100m + memory: 128Mi + limits: + cpu: 500m + memory: 512Mi \ No newline at end of file