32 lines
655 B
YAML
32 lines
655 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: drawio
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
app: drawio
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: drawio
|
|
spec:
|
|
containers:
|
|
- name: drawio
|
|
image: docker.io/jgraph/drawio
|
|
ports:
|
|
- containerPort: 8080
|
|
env:
|
|
- name: DRAWIO_BASE_URL
|
|
value: "/"
|
|
- name: DRAWIO_DEFAULT_THEME
|
|
value: "kennedy"
|
|
resources:
|
|
requests:
|
|
memory: "128Mi"
|
|
cpu: "100m"
|
|
limits:
|
|
memory: "512Mi"
|
|
cpu: "500m"
|